Remove an obsolete command used for testing

The test using this was removed in a045609934.
This commit is contained in:
Brian Helba 2021-10-25 11:21:06 -04:00
parent a155ac54ad
commit df967f4d76
3 changed files with 0 additions and 16 deletions

View file

@ -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