Ticket #18587: custom-management-commands.diff
File custom-management-commands.diff, 520 bytes (added by , 12 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 4a27bdf..12e8ec2 100644
a b default options such as :djadminopt:`--verbosity` and :djadminopt:`--traceback`. 129 129 130 130 class Command(BaseCommand): 131 131 ... 132 self.can_import_settings = True132 can_import_settings = True 133 133 134 134 def handle(self, *args, **options): 135 135