From df967f4d76bfd760381ea56ca587de944bbfe6a2 Mon Sep 17 00:00:00 2001 From: Brian Helba Date: Mon, 25 Oct 2021 11:21:06 -0400 Subject: [PATCH] Remove an obsolete command used for testing The test using this was removed in a04560993468e427e608ee1a848b43d7b6b80756. --- tests/management/__init__.py | 0 tests/management/commands/__init__.py | 0 .../management/commands/old_optparse_command.py | 16 ---------------- 3 files changed, 16 deletions(-) delete mode 100644 tests/management/__init__.py delete mode 100644 tests/management/commands/__init__.py delete mode 100644 tests/management/commands/old_optparse_command.py diff --git a/tests/management/__init__.py b/tests/management/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/tests/management/commands/__init__.py b/tests/management/commands/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/tests/management/commands/old_optparse_command.py b/tests/management/commands/old_optparse_command.py deleted file mode 100644 index d7844e5..0000000 --- a/tests/management/commands/old_optparse_command.py +++ /dev/null @@ -1,16 +0,0 @@ -from optparse import make_option -from django.core.management.base import BaseCommand - - -class Command(BaseCommand): - - # Used by a specific test to see how unupgraded - # management commands play with configurations. - # See the test code for more details. - - option_list = BaseCommand.option_list + ( - make_option('--arg1', action='store_true'), - ) - - def handle(self, *args, **options): - pass