Commit 3c223d10 by Peter Fogg

Correct destination of management command args.

parent 7a300483
...@@ -33,13 +33,13 @@ class Command(BaseCommand): ...@@ -33,13 +33,13 @@ class Command(BaseCommand):
option_list = BaseCommand.option_list + ( option_list = BaseCommand.option_list + (
make_option( make_option(
'-f', '--from_mode', '-f', '--from_mode',
dest='from', dest='from_mode',
default=None, default=None,
help='move from this enrollment mode' help='move from this enrollment mode'
), ),
make_option( make_option(
'-t', '--to_mode', '-t', '--to_mode',
dest='to', dest='to_mode',
default=None, default=None,
help='move to this enrollment mode' help='move to this enrollment mode'
), ),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment