From 8b67fa755140fb4a6b961dfa97744286b5262a3c Mon Sep 17 00:00:00 2001
From: Aymeric Augustin <aymeric.augustin@m4x.org>
Date: Sun, 9 Mar 2014 20:10:56 +0100
Subject: [PATCH] Revert "Reordered INSTALLED_APPS in default template, refs
 #22005"

This reverts commit a718fcf201b04ba254e9073be82f51ae1ae3a853.
---
 django/conf/project_template/project_name/settings.py | 4 ++--
 1 file 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',