From ea9dc9f4b03ae034c1dc080730422dda7a9c2e47 Mon Sep 17 00:00:00 2001 From: Claude Paroz Date: Wed, 25 Apr 2012 06:37:16 +0000 Subject: [PATCH] Fixed #18060 -- Corrected the import path of an example in custom management commands docs. Thanks smuss for the patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17936 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/howto/custom-management-commands.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/howto/custom-management-commands.txt b/docs/howto/custom-management-commands.txt index e0e0bedd53..ba8765b253 100644 --- a/docs/howto/custom-management-commands.txt +++ b/docs/howto/custom-management-commands.txt @@ -45,7 +45,7 @@ look like this: .. code-block:: python from django.core.management.base import BaseCommand, CommandError - from example.polls.models import Poll + from polls.models import Poll class Command(BaseCommand): args = ''