mirror of
https://github.com/SickGear/SickGear.git
synced 2024-12-03 18:03:37 +00:00
Merge pull request #762 from dhellwich/patch-2
Do not log ERROR when show isn't in list. Log WARNING instead.
This commit is contained in:
commit
857b6bacb2
1 changed files with 1 additions and 1 deletions
|
@ -793,7 +793,7 @@ class PostProcessor(object):
|
|||
(show, season, episodes, quality, version) = self._find_info()
|
||||
if not show:
|
||||
self._log(u"This show isn't in your list, you need to add it to SB before post-processing an episode",
|
||||
logger.ERROR)
|
||||
logger.WARNING)
|
||||
raise exceptions.PostProcessingFailed()
|
||||
elif season == None or not episodes:
|
||||
self._log(u"Not enough information to determine what episode this is", logger.DEBUG)
|
||||
|
|
Loading…
Reference in a new issue