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
This commit is contained in:
Claude Paroz 2012-04-25 06:37:16 +00:00
parent 921d7f08b9
commit ea9dc9f4b0
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ look like this:
.. code-block:: python .. code-block:: python
from django.core.management.base import BaseCommand, CommandError from django.core.management.base import BaseCommand, CommandError
from example.polls.models import Poll from polls.models import Poll
class Command(BaseCommand): class Command(BaseCommand):
args = '<poll_id poll_id ...>' args = '<poll_id poll_id ...>'