1
1
mirror of https://github.com/derogab/ITAvsCOVIDbot synced 2025-03-12 09:10:20 +01:00

Fix cron trigger time

This commit is contained in:
Gabriele De Rosa 2021-01-08 02:06:47 +01:00
parent a077001503
commit e47019ab69

2
bot.py
View File

@ -332,7 +332,7 @@ start_handler = CommandHandler('news', news)
dispatcher.add_handler(start_handler) dispatcher.add_handler(start_handler)
# Setup cron # Setup cron
schedule.every().day.at("10:30").do(job) schedule.every().day.at("10:00").do(job)
# Start bot # Start bot
updater.start_polling() updater.start_polling()