Skip to content

Commit

Permalink
Added INSTALLED_APPS to global_settings. It's an empty tuple by default.
Browse files Browse the repository at this point in the history
git-svn-id: http://code.djangoproject.com/svn/django/trunk@1184 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
adrianholovaty committed Nov 11, 2005
1 parent bf33198 commit 1873c95
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions django/conf/global_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,9 @@
# Host for sending e-mail.
EMAIL_HOST = 'localhost'

# List of strings representing installed apps.
INSTALLED_APPS = ()

# List of locations of the template source files, in search order.
TEMPLATE_DIRS = ()

Expand Down
2 changes: 1 addition & 1 deletion docs/settings.txt
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ the 404 e-mailer. See ``SEND_BROKEN_LINK_EMAILS`` and ``IGNORABLE_404_ENDS``.
INSTALLED_APPS
--------------

Default: Not defined
Default: ``()`` (Empty tuple)

A tuple of strings designating all applications that are enabled in this Django
installation. Each string should be a full Python path to a Python package that
Expand Down

0 comments on commit 1873c95

Please sign in to comment.