Fix the log output of the limited backlog search for episodes missed.

The log text backwardly reported processing was for missed episodes older than x days. It's for episodes missed during the last x days.
This commit is contained in:
JackDandy 2014-11-16 02:19:15 +00:00
parent 3d8be67d81
commit b6d079fe48
2 changed files with 2 additions and 1 deletions

View file

@ -12,6 +12,7 @@
* Fix adding shows with titles that contain "&" on Add Trending Show page
* Fix unset vars on Add New Shows Page used in the Add Existing Shows context
* Remove unneeded datetime convert from Coming Episodes page
* Fix the log output of the limited backlog search for episodes missed
### 0.3.0 (2014-11-12 14:30:00 UTC)

View file

@ -85,7 +85,7 @@ class BacklogSearcher:
fromDate = datetime.date.fromordinal(1)
if not which_shows and not curDate - self._lastBacklog >= self.cycleTime:
logger.log(u"Running limited backlog on missed episodes " + str(sickbeard.BACKLOG_DAYS) + " day(s) and older only")
logger.log(u'Running limited backlog for episodes missed during the last %s day(s)' % str(sickbeard.BACKLOG_DAYS))
fromDate = datetime.date.today() - datetime.timedelta(days=sickbeard.BACKLOG_DAYS)
self.amActive = True