Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I was wondering why this works:

sys.path.append('/home/user/django')
sys.path.append('/home/user/django/mysite')

os.environ['DJANGO_SETTINGS_MODULE'] = 'mysite.settings'

but this doesn't?

sys.path.append('/home/user/django')

os.environ['DJANGO_SETTINGS_MODULE'] = 'mysite.settings'

I thought that adding the django folder would automatically make all projects/folders in it available to python? But apparantly I have to add the project as well, or it gives me the error 'settings not found'.

Notice that it doesn't say 'mysite.settings not found' which would indicate it does find my 'mysite' folder..

share|improve this question
1  
What exactly do this works and this doesn't mean ? – Tomasz Zielinski Oct 22 '10 at 10:31
this works = the mysite/settings.py is found and parsed. – Oli Oct 22 '10 at 11:11
doesn't work= ImportError: Could not import settings 'mysite.settings' – Oli Oct 22 '10 at 11:12

2 Answers

Maybe if in your settings.py you have an import to a module that's inside the mysite directory, this import fails and that's why you get the ImportError.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.