summaryrefslogtreecommitdiff
path: root/tests/admin_scripts/management/commands/label_command.py
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2014-06-06 22:39:33 +0200
committerClaude Paroz <claude@2xlibre.net>2014-06-14 13:43:44 +0200
commitf17b24e407385eb18651bf023a187347aa9c1f75 (patch)
tree1757c5d85629d9cd4b84f60e07aeca5eedd515de /tests/admin_scripts/management/commands/label_command.py
parent4b4524291adbc78ab880317124803fc37a2e414a (diff)
Converted remaining management commands to argparse
Diffstat (limited to 'tests/admin_scripts/management/commands/label_command.py')
-rw-r--r--tests/admin_scripts/management/commands/label_command.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/admin_scripts/management/commands/label_command.py b/tests/admin_scripts/management/commands/label_command.py
index 9bba413ff3..5bffeb3ae2 100644
--- a/tests/admin_scripts/management/commands/label_command.py
+++ b/tests/admin_scripts/management/commands/label_command.py
@@ -4,7 +4,6 @@ from django.core.management.base import LabelCommand
class Command(LabelCommand):
help = "Test Label-based commands"
requires_system_checks = False
- args = '<label>'
def handle_label(self, label, **options):
print('EXECUTE:LabelCommand label=%s, options=%s' % (label, sorted(options.items())))