diff options
| author | Aymeric Augustin <aymeric.augustin@m4x.org> | 2014-03-09 20:10:56 +0100 |
|---|---|---|
| committer | Aymeric Augustin <aymeric.augustin@m4x.org> | 2014-03-09 20:10:56 +0100 |
| commit | 8b67fa755140fb4a6b961dfa97744286b5262a3c (patch) | |
| tree | 896c6ae97f0d021849c9425a3bfab3f7d325813d | |
| parent | deff74ea0cc38794cd10a1a3866904c227c986f7 (diff) | |
Revert "Reordered INSTALLED_APPS in default template, refs #22005"
This reverts commit a718fcf201b04ba254e9073be82f51ae1ae3a853.
| -rw-r--r-- | django/conf/project_template/project_name/settings.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/django/conf/project_template/project_name/settings.py b/django/conf/project_template/project_name/settings.py index 0c3e3ece3a..efe8091e81 100644 --- a/django/conf/project_template/project_name/settings.py +++ b/django/conf/project_template/project_name/settings.py @@ -30,9 +30,9 @@ ALLOWED_HOSTS = [] # Application definition INSTALLED_APPS = ( - 'django.contrib.contenttypes', - 'django.contrib.auth', 'django.contrib.admin', + 'django.contrib.auth', + 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', |
