diff options
| author | Claude Paroz <claude@2xlibre.net> | 2012-04-25 06:37:16 +0000 |
|---|---|---|
| committer | Claude Paroz <claude@2xlibre.net> | 2012-04-25 06:37:16 +0000 |
| commit | ea9dc9f4b03ae034c1dc080730422dda7a9c2e47 (patch) | |
| tree | bf8966145d71ac0df0f6ca0c656d03753713aa76 /docs | |
| parent | 921d7f08b915fdce35caccf531a635151e3562ee (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
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/howto/custom-management-commands.txt | 2 |
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 ...>' |
