Use pytz for UTC tzinfo

This commit is contained in:
morpheus65535 2018-03-13 19:30:29 -04:00
parent 958eacad8e
commit a363560f36
2 changed files with 3 additions and 1 deletions

View File

@ -10,6 +10,7 @@ langdetect
Pillow Pillow
py-pretty py-pretty
pycountry pycountry
pytz
requests requests
subliminal subliminal
tzlocal tzlocal

View File

@ -7,10 +7,11 @@ from check_update import *
from apscheduler.schedulers.background import BackgroundScheduler from apscheduler.schedulers.background import BackgroundScheduler
from datetime import datetime from datetime import datetime
import pytz
from tzlocal import get_localzone from tzlocal import get_localzone
if str(get_localzone()) == "local": if str(get_localzone()) == "local":
scheduler = BackgroundScheduler(timezone=utc) scheduler = BackgroundScheduler(timezone=pytz.timezone('UTC'))
else: else:
scheduler = BackgroundScheduler() scheduler = BackgroundScheduler()