Ticket #18587: custom-management-commands.diff

File custom-management-commands.diff, 520 bytes (added by Frank Wiles, 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`.  
    129129
    130130        class Command(BaseCommand):
    131131            ...
    132             self.can_import_settings = True
     132            can_import_settings = True
    133133
    134134            def handle(self, *args, **options):
    135135
Back to Top