diff options
author | Adrian Holovaty <adrian@holovaty.com> | 2005-10-17 04:36:51 +0000 |
---|---|---|
committer | Adrian Holovaty <adrian@holovaty.com> | 2005-10-17 04:36:51 +0000 |
commit | 8b7ebca68a04c7f88dbb61e5cc43835b761e8d76 (patch) | |
tree | b4fdb7d13cb26835cd47697ff6d442e209fb560f /django/conf/global_settings.py | |
parent | 3df39deede8eba5a005ae8c487cd6320b04dc83c (diff) | |
download | django-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.py | 2 |
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 |