From a6f74f3f56a418babd1565a346ad1d83676f6703 Mon Sep 17 00:00:00 2001 From: Raffaele Salmaso Date: Thu, 22 Feb 2018 09:19:55 +0100 Subject: [PATCH] Update INSTALLED_APPS docs to use AppConfig where possible --- docs/installation.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/installation.rst b/docs/installation.rst index c06058fd..9dfd2035 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -65,9 +65,9 @@ maintain the order due to database relational constraints: .. code-block:: python - 'django.contrib.sites', - 'django.contrib.humanize', - 'django_nyt', + 'django.contrib.sites.apps.SitesConfig', + 'django.contrib.humanize.apps.HumanizeConfig', + 'django_nyt.apps.DjangoNytConfig', 'mptt', 'sekizai', 'sorl.thumbnail', -- 2.45.2