Private GIT

Skip to content
Snippets Groups Projects
Commit 73dc968e authored by Alexandre Beloin's avatar Alexandre Beloin
Browse files

Merge pull request #1293 from abeloin/patch_dailysearcher

Fix incorrect operator in dailysearcher.py
parents 98fec41e 052138a5
Branches
Tags
No related merge requests found
......@@ -49,7 +49,7 @@ class DailySearcher():
if network_timezones.network_dict:
curDate = (datetime.date.today() + datetime.timedelta(days=1)).toordinal()
else:
curDate = (datetime.date.today() - datetime.timedelta(days=2)).toordinal()
curDate = (datetime.date.today() + datetime.timedelta(days=2)).toordinal()
curTime = datetime.datetime.now(network_timezones.sb_timezone)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment