diff options
author | Rodney Ewing <ewing.rj@gmail.com> | 2013-08-13 09:57:35 -0700 |
---|---|---|
committer | Rodney Ewing <ewing.rj@gmail.com> | 2013-08-16 15:30:18 -0700 |
commit | 5ac1fe806483de28656a056f10314ecc6a10aed4 (patch) | |
tree | 187faa1ecc254ba2038a0651d269abdeb9e1db5a /mediagoblin/gmg_commands/reprocess.py | |
parent | 36c17b85c12546076067e039e5f55c7780dc54f3 (diff) | |
download | mediagoblin-5ac1fe806483de28656a056f10314ecc6a10aed4.tar.lz mediagoblin-5ac1fe806483de28656a056f10314ecc6a10aed4.tar.xz mediagoblin-5ac1fe806483de28656a056f10314ecc6a10aed4.zip |
Audio Initial Processor
Diffstat (limited to 'mediagoblin/gmg_commands/reprocess.py')
-rw-r--r-- | mediagoblin/gmg_commands/reprocess.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mediagoblin/gmg_commands/reprocess.py b/mediagoblin/gmg_commands/reprocess.py index 5285942e..375d9ff2 100644 --- a/mediagoblin/gmg_commands/reprocess.py +++ b/mediagoblin/gmg_commands/reprocess.py @@ -245,7 +245,8 @@ def thumbs(args): # prepare filetype and size to be passed into reprocess_parser if args.size: - extra_args = 'thumb --size {0} {1}'.format(args.size[0], args.size[1]) + extra_args = 'thumb --size {0} {1}'.format(args.size[0], + args.size[1]) else: extra_args = 'thumb' |