Skip to content
Snippets Groups Projects
Commit 6e91d884 authored by Peter Fogg's avatar Peter Fogg
Browse files

Merge pull request #12696 from edx/peter-fogg/fix-command-facepalm

Correct destination of management command args.
parents 6eef8ee9 3c223d10
No related merge requests found
......@@ -33,13 +33,13 @@ class Command(BaseCommand):
option_list = BaseCommand.option_list + (
make_option(
'-f', '--from_mode',
dest='from',
dest='from_mode',
default=None,
help='move from this enrollment mode'
),
make_option(
'-t', '--to_mode',
dest='to',
dest='to_mode',
default=None,
help='move to this enrollment mode'
),
......
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