From 0d6e448a9993be7e9b606bb4ef821e80d1737b40 Mon Sep 17 00:00:00 2001 From: Michael Fladischer Date: Wed, 1 Mar 2017 15:21:23 +0100 Subject: [PATCH] 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. --- docs/_ext/djangodummy/settings.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/_ext/djangodummy/settings.py b/docs/_ext/djangodummy/settings.py index 414e9fa..849666a 100644 --- a/docs/_ext/djangodummy/settings.py +++ b/docs/_ext/djangodummy/settings.py @@ -9,3 +9,7 @@ STATIC_URL = '/static/' # Avoid error for missing the secret key SECRET_KEY = 'docs' + +INSTALLED_APPS = [ + 'django.contrib.contenttypes', +]