Django

Code

Changeset 4915

Show
Ignore:
Timestamp:
04/03/07 16:57:15 (2 years ago)
Author:
adrian
Message:

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

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/faq.txt

    r4898 r4915  
    383383 
    384384    * The environment variable DJANGO_SETTINGS_MODULE is set to a fully-qualified 
    385       Python module (i.e. "mysite.settings.main"). 
    386  
    387     * Said module is on ``sys.path`` (``import mysite.settings.main`` should work). 
     385      Python module (i.e. "mysite.settings"). 
     386 
     387    * Said module is on ``sys.path`` (``import mysite.settings`` should work). 
    388388 
    389389    * The module doesn't contain syntax errors (of course).