summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorBoulder Sprinters <boulder-sprinters@djangoproject.com>2007-04-05 16:17:35 +0000
committerBoulder Sprinters <boulder-sprinters@djangoproject.com>2007-04-05 16:17:35 +0000
commita9b2c0686d98f78ca365a04057699a44f7711914 (patch)
tree451caf3f856bb51e72c2b88d5fcefbedbadf7b01 /docs
parent5bcf13b607ea92c34d13cbb52f70c1e6b76ce5cd (diff)
boulder-oracle-sprint: Merged to [4934].
git-svn-id: http://code.djangoproject.com/svn/django/branches/boulder-oracle-sprint@4935 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/faq.txt4
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).