opendev wrote: > I have exactly the same problem, my django is the latest mr head unter > Python 2.4(win32)
ah, sorry, i forgot to post my findings here... basically the "problem" was that i specified the imports "relatively". example: 1. django-admin.py startproject myproject 2. manage.py startapp myapp 3. now create a model in myapp. let's call it MyModel at this point, when i create a script to work with my models and import the model, things can go wrong. with this import, reverse lookups work: from myproject.myapp.models import MyModel with this import, revers lookups fail: from myapp.models import MyModel so basically, when importing, also specify the project-name. in more detail here: http://groups.google.com/group/django-developers/browse_thread/thread/51ebb62cc40ff3f7 for me this: 1. seems to be a bug in django 2. only happens with my own scripts. if i am running the django app using the development server, both kind of imports work ok. gabor --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---