Fixed #3913 -- Fixed legacy/confusing 'mysite.settings.main' in docs/faq.txt

git-svn-id: http://code.djangoproject.com/svn/django/trunk@4915 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2007-04-03 21:57:15 +00:00
parent bb53a0e264
commit 87471549b3
1 changed files with 2 additions and 2 deletions

View File

@ -382,9 +382,9 @@ Why do I get an error about importing DJANGO_SETTINGS_MODULE?
Make sure that:
* The environment variable DJANGO_SETTINGS_MODULE is set to a fully-qualified
Python module (i.e. "mysite.settings.main").
Python module (i.e. "mysite.settings").
* Said module is on ``sys.path`` (``import mysite.settings.main`` should work).
* Said module is on ``sys.path`` (``import mysite.settings`` should work).
* The module doesn't contain syntax errors (of course).