diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2013-08-09 14:10:52 -0500 |
---|---|---|
committer | Rodney Ewing <ewing.rj@gmail.com> | 2013-08-16 15:30:15 -0700 |
commit | 19ed12b2790ec32d993e6e73c101ea820fe3ed29 (patch) | |
tree | 145c4b19df6ae92d4fb78b14154a0e8bde376041 /mediagoblin/gmg_commands/reprocess.py | |
parent | 55a10fef0ae97cb33c8393a7a25487c2666b4cf1 (diff) | |
download | mediagoblin-19ed12b2790ec32d993e6e73c101ea820fe3ed29.tar.lz mediagoblin-19ed12b2790ec32d993e6e73c101ea820fe3ed29.tar.xz mediagoblin-19ed12b2790ec32d993e6e73c101ea820fe3ed29.zip |
Whitespacin' it up.
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) |