Skip to content
Snippets Groups Projects
Commit 39d60095 authored by Dan Braghis's avatar Dan Braghis
Browse files

Remove dry-run option

parent 21695571
No related branches found
No related tags found
No related merge requests found
...@@ -16,12 +16,6 @@ class Command(BaseCommand): ...@@ -16,12 +16,6 @@ class Command(BaseCommand):
def add_arguments(self, parser): def add_arguments(self, parser):
parser.add_argument('source', nargs='?', type=argparse.FileType('r'), help='Migration source JSON file') parser.add_argument('source', nargs='?', type=argparse.FileType('r'), help='Migration source JSON file')
parser.add_argument(
'--dry-run',
action='store_true',
dest='dry_run',
help='Perform a run dry-run',
)
@transaction.atomic @transaction.atomic
def handle(self, *args, **options): def handle(self, *args, **options):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment