diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2007-04-03 21:57:15 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2007-04-03 21:57:15 +0000 |
| commit | 87471549b3f13ce44968655fba4e19cdbc235c77 (patch) | |
| tree | d1b59497f7e51de69e6c16af14fc96b0d306f20b /docs/faq.txt | |
| parent | bb53a0e264d1571b279ec935df71ee8136fd20e2 (diff) | |
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
Diffstat (limited to 'docs/faq.txt')
| -rw-r--r-- | docs/faq.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/faq.txt b/docs/faq.txt index b5150a0967..202b73c6be 100644 --- a/docs/faq.txt +++ b/docs/faq.txt @@ -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). |
