summaryrefslogtreecommitdiff
path: root/django/conf/global_settings.py
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2005-10-17 04:36:51 +0000
committerAdrian Holovaty <adrian@holovaty.com>2005-10-17 04:36:51 +0000
commit8b7ebca68a04c7f88dbb61e5cc43835b761e8d76 (patch)
treeb4fdb7d13cb26835cd47697ff6d442e209fb560f /django/conf/global_settings.py
parent3df39deede8eba5a005ae8c487cd6320b04dc83c (diff)
downloaddjango-8b7ebca68a04c7f88dbb61e5cc43835b761e8d76.tar.gz
Changed global_settings.ADMIN_FOR from [] to ()
git-svn-id: http://code.djangoproject.com/svn/django/trunk@894 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/conf/global_settings.py')
-rw-r--r--django/conf/global_settings.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/conf/global_settings.py b/django/conf/global_settings.py
index f0f66540db..52acb51de4 100644
--- a/django/conf/global_settings.py
+++ b/django/conf/global_settings.py
@@ -110,7 +110,7 @@ ALLOWED_INCLUDE_ROOTS = ()
# If this is a admin settings module, this should be a list of
# settings modules (in the format 'foo.bar.baz') for which this admin
# is an admin.
-ADMIN_FOR = []
+ADMIN_FOR = ()
# Whether to check the flat-pages table as a last resort for all 404 errors.
USE_FLAT_PAGES = True