mirror of
https://github.com/SickGear/SickGear.git
synced 2025-01-07 02:23:38 +00:00
PEP8 Fix for backlog searches
This commit is contained in:
parent
39d9fc6434
commit
8b5559bdef
1 changed files with 4 additions and 4 deletions
|
@ -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()
|
||||||
|
|
Loading…
Reference in a new issue