I have the following structure: myproj/core/ myproj/core/__init__.py myproj/core/management/ myproj/core/management/__init__.py myproj/core/management/commands/ myproj/core/management/commands/__init__.py myproj/core/management/commands/populate.py
On Win32, when I am in the project's directory and run: python manage.py populate it works as expected. The exact same project on FreeBSD 6.2 with Python 2.5.1 doesn't register the 'populate' command. A bit of digging revealed that the project's parent directory is getting removed from sys.path, so the import of myproj.core.management fails (INSTALLED_APPS has "myproj.core" in it). I had to add ".." to sys.path at the top of manage.py to get it to work correctly. Did I do something wrong? --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---