From b9daa4f0e12908c9f0736e2784913da3974d07b0 Mon Sep 17 00:00:00 2001 From: David Arcos Date: Tue, 29 Jul 2014 18:12:35 +0200 Subject: [PATCH] Fixed a typo in the admin documentation. The 'app' subpackage does not exist, should be 'app'. --- docs/ref/contrib/admin/index.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ref/contrib/admin/index.txt b/docs/ref/contrib/admin/index.txt index 1b137f6448..d878058071 100644 --- a/docs/ref/contrib/admin/index.txt +++ b/docs/ref/contrib/admin/index.txt @@ -2491,7 +2491,7 @@ In this example, we register the ``AdminSite`` instance Note that you may not want autodiscovery of ``admin`` modules when using your own ``AdminSite`` instance since you will likely be importing all the per-app ``admin`` modules in your ``myproject.admin`` module. This means you need to -put ``'django.contrib.admin.app.SimpleAdminConfig'`` instead of +put ``'django.contrib.admin.apps.SimpleAdminConfig'`` instead of ``'django.contrib.admin'`` in your :setting:`INSTALLED_APPS` setting.