Private GIT

Skip to content
Snippets Groups Projects
Commit 70a34cc1 authored by Amadeus's avatar Amadeus
Browse files

DailySearcher.run() minor bug fix

parent 0fe5b091
No related branches found
No related tags found
No related merge requests found
......@@ -59,7 +59,7 @@ class DailySearcher(object):
curTime = datetime.datetime.now(network_timezones.sb_timezone)
myDB = db.DBConnection()
sqlResults = myDB.select("SELECT showid, airdate, season, episode FROM tv_episodes WHERE status = ? AND season > 0 AND (airdate <= ? and airdate > 1)",
sqlResults = myDB.select("SELECT showid, airdate, season, episode FROM tv_episodes WHERE status = ? AND (airdate <= ? and airdate > 1)",
[common.UNAIRED, curDate])
sql_l = []
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment