summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2012-04-25 06:37:16 +0000
committerClaude Paroz <claude@2xlibre.net>2012-04-25 06:37:16 +0000
commitea9dc9f4b03ae034c1dc080730422dda7a9c2e47 (patch)
treebf8966145d71ac0df0f6ca0c656d03753713aa76
parent921d7f08b915fdce35caccf531a635151e3562ee (diff)
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
-rw-r--r--docs/howto/custom-management-commands.txt2
1 files changed, 1 insertions, 1 deletions
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 = '<poll_id poll_id ...>'