From b8295024befcc605c0e95e8977dea63eb7c8010d Mon Sep 17 00:00:00 2001 From: echel0n Date: Sat, 15 Nov 2014 20:59:55 -0800 Subject: [PATCH] Fixed bug #897, switched message to be classified as a warning instead of a error --- sickbeard/processTV.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sickbeard/processTV.py b/sickbeard/processTV.py index 10248a44..560b975d 100644 --- a/sickbeard/processTV.py +++ b/sickbeard/processTV.py @@ -142,7 +142,7 @@ def processDir(dirName, nzbName=None, process_method=None, force=False, is_prior # Don't post process if files are still being synced and option is activated if SyncFiles and sickbeard.POSTPONE_IF_SYNC_FILES: - returnStr += logHelper(u"Found temporary sync files, skipping post processing", logger.ERROR) + returnStr += logHelper(u"Found temporary sync files, skipping post processing", logger.WARNING) return returnStr returnStr += logHelper(u"PostProcessing Path: " + path, logger.DEBUG) @@ -190,7 +190,7 @@ def processDir(dirName, nzbName=None, process_method=None, force=False, is_prior # Don't post process if files are still being synced and option is activated if SyncFiles and sickbeard.POSTPONE_IF_SYNC_FILES: - returnStr += logHelper(u"Found temporary sync files, skipping post processing", logger.ERROR) + returnStr += logHelper(u"Found temporary sync files, skipping post processing", logger.WARNING) return returnStr rarFiles = filter(helpers.isRarFile, fileList)