diff --git a/requirements.txt b/requirements.txt index 0f4f2be37..0fc8dfe32 100644 --- a/requirements.txt +++ b/requirements.txt @@ -10,6 +10,7 @@ langdetect Pillow py-pretty pycountry +pytz requests subliminal tzlocal diff --git a/scheduler.py b/scheduler.py index 57ceeb07f..b4c8ba614 100644 --- a/scheduler.py +++ b/scheduler.py @@ -7,10 +7,11 @@ from check_update import * from apscheduler.schedulers.background import BackgroundScheduler from datetime import datetime +import pytz from tzlocal import get_localzone if str(get_localzone()) == "local": - scheduler = BackgroundScheduler(timezone=utc) + scheduler = BackgroundScheduler(timezone=pytz.timezone('UTC')) else: scheduler = BackgroundScheduler()