Re: Overridden Model __init__ being called twice

2010-09-09 Thread Brian Bouterse
The first request is the actual request and its stack trace shows the work being kicked off by the request handler. The second request stack trace is actually coming from a the use of the inlines functionality in the OrderOpportunityAdmi

Re: Overridden Model __init__ being called twice

2010-09-09 Thread akaariai
On 9 syys, 20:06, bmbouter wrote: > I have a model defined named OrderOpportunity where I have overridden > __init__(self).  I have included the relevant parts of the Model below > as an example.  What I want to understand is why the overridden > __init__ is being called twice for the creation of

Overridden Model __init__ being called twice

2010-09-09 Thread bmbouter
I have a model defined named OrderOpportunity where I have overridden __init__(self). I have included the relevant parts of the Model below as an example. What I want to understand is why the overridden __init__ is being called twice for the creation of a single OrderOpportunity DB record. In mo