From: Rodney Ewing Date: Thu, 1 Aug 2013 22:24:34 +0000 (-0700) Subject: refactored _run_reprocessing X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=11a99d787f899808b10410e271491cbdfb69e55f;p=mediagoblin.git refactored _run_reprocessing --- diff --git a/mediagoblin/gmg_commands/reprocess.py b/mediagoblin/gmg_commands/reprocess.py index cad75c45..60df697f 100644 --- a/mediagoblin/gmg_commands/reprocess.py +++ b/mediagoblin/gmg_commands/reprocess.py @@ -85,7 +85,15 @@ def _reprocess_all(args): def _run_reprocessing(args): if args[0].available: - return hook_handle(('reprocess_action', args[0].type), args) + if args[0].state == 'failed': + print _('\n Available reprocess actions for all failed' + ' media_entries: \n \t --initial_processing') + else: + result = hook_handle(('reprocess_action', args[0].type), args) + if not result: + print _('Sorry there is no available reprocessing for {}' + ' entries in the {} state'.format(args[0].type, + args[0].state)) else: return hook_handle(('media_reprocess', args[0].type), args)