mirror of
https://github.com/moparisthebest/SickRage
synced 2024-11-15 13:55:05 -05:00
Fixes issue with daily searcher setting episodes past todays date to wanted.
This commit is contained in:
parent
de20d13c61
commit
1f55b11b7d
@ -54,11 +54,12 @@ class DailySearcher():
|
||||
|
||||
logger.log(u"Checking to see if any shows have wanted episodes available for the last week ...")
|
||||
|
||||
curDate = datetime.date.today() - datetime.timedelta(weeks=1)
|
||||
fromDate = datetime.date.today() - datetime.timedelta(weeks=1)
|
||||
toDate = datetime.date.today()
|
||||
|
||||
myDB = db.DBConnection()
|
||||
sqlResults = myDB.select("SELECT * FROM tv_episodes WHERE status in (?,?) AND airdate > ?",
|
||||
[common.UNAIRED, common.WANTED, curDate.toordinal()])
|
||||
sqlResults = myDB.select("SELECT * FROM tv_episodes WHERE status in (?,?) AND airdate >= ? AND airdate < ?",
|
||||
[common.UNAIRED, common.WANTED, fromDate.toordinal(), toDate.toordinal()])
|
||||
|
||||
todaysEps = {}
|
||||
for sqlEp in sqlResults:
|
||||
|
Loading…
Reference in New Issue
Block a user