Trying to fix the bug that's happening to rodney757 but not to me ;)

This commit is contained in:
Christopher Allan Webber 2013-08-12 11:19:20 -05:00 committed by Rodney Ewing
parent ff12ecef34
commit de332ab9f5

View File

@ -28,6 +28,11 @@ from mediagoblin.processing import (
def reprocess_parser_setup(subparser):
subparser.add_argument(
'--celery',
action='store_true',
help="Don't process eagerly, pass off to celery")
subparsers = subparser.add_subparsers(dest="reprocess_subcommand")
###################
@ -66,10 +71,6 @@ def reprocess_parser_setup(subparser):
'--thumbnails',
action="store_true",
help="Regenerate thumbnails for all processed media")
run_parser.add_argument(
'--celery',
action='store_true',
help="Don't process eagerly, pass off to celery")
run_parser.add_argument(
'media_id',