Commit ea9dc9f4 authored by Claude Paroz's avatar Claude Paroz
Browse files

Fixed #18060 -- Corrected the import path of an example in custom management...

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
parent 921d7f08
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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 ...>'