Private GIT

Skip to content
Snippets Groups Projects
Commit c217a4fc authored by Nils Vogels's avatar Nils Vogels
Browse files

Merge branch 'dev' of github.com:echel0n/SickRage into dev

parents 177dbc0f 347f595d
Branches
Tags
No related merge requests found
......@@ -54,12 +54,12 @@ class DailySearcher():
show = helpers.findCertainShow(sickbeard.showList, int(sqlEp["showid"]))
except exceptions.MultipleShowObjectsException:
logger.log(u"ERROR: expected to find a single show matching " + sqlEp["showid"])
return None
break
if show == None:
if not show:
logger.log(u"Unable to find the show with ID " + str(
sqlEp["showid"]) + " in your show list! DB value was " + str(sqlEp), logger.ERROR)
return None
break
ep = show.getEpisode(sqlEp["season"], sqlEp["episode"])
with ep.lock:
......@@ -89,3 +89,5 @@ class DailySearcher():
sickbeard.searchQueueScheduler.action.add_item(dailysearch_queue_item)
else:
logger.log(u"Could not find any needed episodes to search for ...")
self.amActive = False
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment