Thanks to Malcolm, this was resolved.  The problem was because I was
trying to use a model before all models had fully been loaded.
Unfortunately it was due to my own mistake rather than anything that
would help with ticket 1796, but I'm grateful he stuck around to help
figure it out anyway.  Hopefully I'll get a chance to payback the
django's wonderful community in the future.

In my case, I had a mixin class that imported manager.py.  That mixin
class was used in several others apps models.py files.  Since the
relations between model classes are setup after all models are loaded,
things got a bit crazy when my EventManager class started to access
the EventClass and EventType models all of the models were fully
loaded.

The solution he recommended (which worked perfectly), was to use a
python 'propery' to run the load_meta() method the first time it was
accessed.  Since that propery wasn't accessed until runtime it gave a
chance for all the relationships to be setup before using the models.



--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to