From 69569758d90f96d941d23ea363789e6d5993d5e5 Mon Sep 17 00:00:00 2001 From: mano3m Date: Mon, 16 Dec 2013 22:51:04 +0100 Subject: [PATCH] Make sure we return true on success --- couchpotato/core/plugins/release/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/couchpotato/core/plugins/release/main.py b/couchpotato/core/plugins/release/main.py index 061a856c..aec691e5 100644 --- a/couchpotato/core/plugins/release/main.py +++ b/couchpotato/core/plugins/release/main.py @@ -333,7 +333,7 @@ class Release(Plugin): log.error('Failed storing download status: %s', traceback.format_exc()) return False - return False + return True def tryDownloadResult(self, results, media, quality_type, manual = False): ignored_status, failed_status = fireEvent('status.get', ['ignored', 'failed'], single = True)