Fixed bug #897, switched message to be classified as a warning instead of a error

This commit is contained in:
echel0n 2014-11-15 20:59:55 -08:00
parent aa76734f56
commit b8295024be
1 changed files with 2 additions and 2 deletions

View File

@ -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)