mirror of
https://github.com/moparisthebest/SickRage
synced 2024-11-05 17:05:03 -05:00
Fix incorrect operator in dailysearcher.py
This commit is contained in:
parent
c62d8f2c79
commit
052138a50f
@ -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)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user