1
0
mirror of https://github.com/moparisthebest/SickRage synced 2024-12-12 11:02:21 -05:00

PEP8 Fix for backlog searches

This commit is contained in:
echel0n 2014-07-19 12:52:16 -07:00
parent 39d9fc6434
commit 8b5559bdef

View File

@ -68,15 +68,15 @@ class BacklogSearcher:
def searchBacklog(self, which_shows=None): def searchBacklog(self, which_shows=None):
if self.amActive:
logger.log(u"Backlog is still running, not starting it again", logger.DEBUG)
return
if which_shows: if which_shows:
show_list = which_shows show_list = which_shows
else: else:
show_list = sickbeard.showList show_list = sickbeard.showList
if self.amActive:
logger.log(u"Backlog is still running, not starting it again", logger.DEBUG)
return
self._get_lastBacklog() self._get_lastBacklog()
curDate = datetime.date.today().toordinal() curDate = datetime.date.today().toordinal()