From 87471549b3f13ce44968655fba4e19cdbc235c77 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Tue, 3 Apr 2007 21:57:15 +0000 Subject: [PATCH] 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 --- docs/faq.txt | 4 ++-- 1 file 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).