magic-removal: added auth, contenttypes, sessions, and sites to INSTALLED_APPS in the default settings.py template. They need to be there for django-admin.py init to run successfully.

git-svn-id: http://code.djangoproject.com/svn/django/branches/magic-removal@1889 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Joseph Kocherhans 2006-01-09 18:29:34 +00:00
parent e65f226623
commit af1f95bc31
1 changed files with 4 additions and 0 deletions

View File

@ -64,4 +64,8 @@ TEMPLATE_DIRS = (
)
INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
)