Install django.contrib.contenttypes for docstrings.

This is merely cosmetic to avoid Django warning because of
`django.contrib.contenttypes` being referenced but not an installed app.
fix_request_path_info
Michael Fladischer 2017-03-01 15:21:23 +01:00
parent c2aff50ecc
commit 0d6e448a99
1 changed files with 4 additions and 0 deletions

View File

@ -9,3 +9,7 @@ STATIC_URL = '/static/'
# Avoid error for missing the secret key # Avoid error for missing the secret key
SECRET_KEY = 'docs' SECRET_KEY = 'docs'
INSTALLED_APPS = [
'django.contrib.contenttypes',
]