web/lib/django_extensions/conf/command_template/management/commands/sample.py.tmpl
equal
deleted
inserted
replaced
|
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() |