Re: ImportError: Could not import settings
Hello,
there's a little hint at the end of exception:
> No module named unipath
Seems like you import module unipath in your settings.py, which is not
on your sys.path.
I never set PYTHONPATH for development and everything works fine.
Python adds current directory to sys.path, so when you run ./manage.py,
you don't need to set PYTHONPATH pointing to current working directory.
Check content of you sys.path.
Cheers,
Tom
--
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 django-users+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

0 Comments:
Post a Comment
Subscribe to Post Comments [Atom]
<< Home