mirror of
https://github.com/SickGear/SickGear.git
synced 2025-01-07 10:33:38 +00:00
Fixed unicode error
This commit is contained in:
parent
1e8233d430
commit
f5a6d45d8f
1 changed files with 1 additions and 1 deletions
|
@ -85,7 +85,7 @@ class BacklogSearcher:
|
||||||
fromDate = datetime.date.fromordinal(1)
|
fromDate = datetime.date.fromordinal(1)
|
||||||
|
|
||||||
if not which_shows and not curDate - self._lastBacklog >= self.cycleTime:
|
if not which_shows and not curDate - self._lastBacklog >= self.cycleTime:
|
||||||
logger.log(u"Running limited backlog on missed episodes " + sickbeard.BACKLOG_DAYS + " day(s) and older only")
|
logger.log(u"Running limited backlog on missed episodes " + str(sickbeard.BACKLOG_DAYS) + " day(s) and older only")
|
||||||
fromDate = datetime.date.today() - datetime.timedelta(days=sickbeard)
|
fromDate = datetime.date.today() - datetime.timedelta(days=sickbeard)
|
||||||
|
|
||||||
self.amActive = True
|
self.amActive = True
|
||||||
|
|
Loading…
Reference in a new issue