You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
484 B
15 lines
484 B
from django.core.management.base import BaseCommand, CommandError |
|
|
|
class ArgsCommand(BaseCommand): |
|
""" |
|
Command class for commands that take multiple arguments. |
|
""" |
|
args = '<arg arg ...>' |
|
|
|
def handle(self, *args, **options): |
|
if not args: |
|
raise CommandError('Must provide the following arguments: %s' % self.args) |
|
return self.handle_args(*args, **options) |
|
|
|
def handle_args(self, *args, **options): |
|
raise NotImplementedError()
|
|
|