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:
parent
e65f226623
commit
af1f95bc31
|
@ -64,4 +64,8 @@ TEMPLATE_DIRS = (
|
|||
)
|
||||
|
||||
INSTALLED_APPS = (
|
||||
'django.contrib.auth',
|
||||
'django.contrib.contenttypes',
|
||||
'django.contrib.sessions',
|
||||
'django.contrib.sites',
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue