From 33d5ac6c4de44aa8d98a8cf759c79351f5a59885 Mon Sep 17 00:00:00 2001 From: vijeth-aradhya Date: Sat, 17 Jun 2017 00:53:39 +0530 Subject: Simple hack to handle main workflow problem Remove redundunt workflow methods from the other media type's processing.py. Fixes #1 --- mediagoblin/processing/__init__.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'mediagoblin/processing/__init__.py') diff --git a/mediagoblin/processing/__init__.py b/mediagoblin/processing/__init__.py index 98031bbc..7d407a36 100644 --- a/mediagoblin/processing/__init__.py +++ b/mediagoblin/processing/__init__.py @@ -257,12 +257,11 @@ class ProcessingManager(object): return processor - def workflow(self, entry_id, feed_url, reprocess_action, reprocess_info=None): + def workflow(self, entry, feed_url, reprocess_action, reprocess_info=None): """ Returns the Celery command needed to proceed with media processing - *This method has to be implemented in all media types* """ - raise NotImplementedError + return None def request_from_args(args, which_args): -- cgit v1.2.3