diff options
Diffstat (limited to 'mediagoblin/gmg_commands/reprocess.py')
-rw-r--r-- | mediagoblin/gmg_commands/reprocess.py | 10 |
1 files changed, 9 insertions, 1 deletions
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) |