diff --git a/requirements.txt b/requirements.txt index cba6f7e..4cc7be4 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,4 +4,5 @@ Flask-SQLAlchemy paramiko apscheduler gunicorn -waitress \ No newline at end of file +waitress +pytz \ No newline at end of file diff --git a/run_waitress.py b/run_waitress.py index 0641b9d..0ee98e4 100644 --- a/run_waitress.py +++ b/run_waitress.py @@ -7,6 +7,7 @@ if __name__ == "__main__": db.create_all() for job in scheduler.get_jobs(): job.modify(next_run_time=datetime.now()) + print(job) if not scheduler.running: scheduler.start() serve(app, listen="*:5580", threads=4, ident="")