2008-07-10 20:12:41 +08:00
|
|
|
from django.core.management.base import LabelCommand
|
2008-07-13 16:48:18 +08:00
|
|
|
# Python 2.3 doesn't have sorted()
|
|
|
|
try:
|
|
|
|
sorted
|
|
|
|
except NameError:
|
|
|
|
from django.utils.itercompat import sorted
|
2008-07-10 20:12:41 +08:00
|
|
|
|
|
|
|
class Command(LabelCommand):
|
|
|
|
help = "Test Label-based commands"
|
|
|
|
requires_model_validation = False
|
|
|
|
args = '<label>'
|
|
|
|
|
|
|
|
def handle_label(self, label, **options):
|
|
|
|
print 'EXECUTE:LabelCommand label=%s, options=%s' % (label, sorted(options.items()))
|