Ticket #18060: 18060.diff
File 18060.diff, 509 bytes (added by , 13 years ago) |
---|
-
docs/howto/custom-management-commands.txt
diff --git a/docs/howto/custom-management-commands.txt b/docs/howto/custom-management-commands.txt index e0e0bed..ba8765b 100644
a b look like this: 45 45 .. code-block:: python 46 46 47 47 from django.core.management.base import BaseCommand, CommandError 48 from example.polls.models import Poll48 from polls.models import Poll 49 49 50 50 class Command(BaseCommand): 51 51 args = '<poll_id poll_id ...>'