From 0c345f30e902bc7fcebd7c47201dce2a5c1b06ff Mon Sep 17 00:00:00 2001 From: Gabriele De Rosa Date: Fri, 21 May 2021 18:24:41 +0200 Subject: [PATCH] Change cron hour --- bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot.py b/bot.py index c597886..f5f0a42 100644 --- a/bot.py +++ b/bot.py @@ -410,7 +410,7 @@ start_handler = CommandHandler('news', news) dispatcher.add_handler(start_handler) # Setup cron -schedule.every().day.at("18:20").do(job) +schedule.every().day.at("18:30").do(job) # Start bot updater.start_polling()