web/lib/django_extensions/conf/command_template/management/commands/sample.py.tmpl
changeset 3 526ebd3988b0
equal deleted inserted replaced
1:ebaad720f88b 3:526ebd3988b0
       
     1 from django.core.management.base import {{ base_command }}
       
     2 
       
     3 class Command({{ base_command }}):
       
     4     help = "My shiny new management command."
       
     5 
       
     6     def {{ handle_method }}:
       
     7         raise NotImplementedError()