diff options
Diffstat (limited to 'mediagoblin/gmg_commands/reprocess.py')
-rw-r--r-- | mediagoblin/gmg_commands/reprocess.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mediagoblin/gmg_commands/reprocess.py b/mediagoblin/gmg_commands/reprocess.py index 70163928..62a6d428 100644 --- a/mediagoblin/gmg_commands/reprocess.py +++ b/mediagoblin/gmg_commands/reprocess.py @@ -227,6 +227,7 @@ def available(args): print "Available processors:" print "=====================" + print "" if args.action_help: for processor in processors: @@ -235,6 +236,7 @@ def available(args): parser = processor.generate_parser() parser.print_help() + print "" else: for processor in processors: @@ -266,5 +268,6 @@ def reprocess(args): if args.reprocess_subcommand == "run": run(args) + elif args.reprocess_subcommand == "available": available(args) |