Skip to content

Commit

Permalink
Fixed django#18060 -- Corrected the import path of an example in cust…
Browse files Browse the repository at this point in the history
…om management commands docs. Thanks smuss for the patch.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@17936 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
claudep committed Apr 25, 2012
1 parent 921d7f0 commit ea9dc9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/howto/custom-management-commands.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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 ...>'
Expand Down

0 comments on commit ea9dc9f

Please sign in to comment.