On 10/4/06, MerMer <[EMAIL PROTECTED]> wrote: > > Thanks Jay and Rajesh, > > I've just discovered this myself by switching the code around. This > is a real GOTCHA and not immediately obvious for a newbie like me. I > can't see anything in the documentation that mentions this - so I > presumed it was a bug.
Well, it's a Python thing, really. To use a class, that class has to be defined. And it *is* in the Django documentation: http://www.djangoproject.com/documentation/model_api/#many-to-many-relationships "...and you can refer to as-yet undefined models by using a string containing the model name." The Django documentation tends to deal more with the case of reading it before you dive in, as opposed to using it to debug tracebacks. Jay P. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users -~----------~----~----~----~------~----~------~--~---

