Skip to content

Commit

Permalink
Update dailybot.py
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandrebarbaruiva authored Jun 11, 2019
1 parent dee28ca commit fcd8292
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dailybot.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def __init__(self, token):
daily_hour = int(os.environ.get("HOUR"))
daily_minute = int(os.environ.get("MINUTE"))
daily_time = datetime.time(hour=daily_hour, minute=daily_minute)
self.job_daily = self.job.run_daily(self.send_daily, time=daily_time, days=(2, 4))
self.job_daily = self.job.run_daily(self.send_daily, time=daily_time, days=(0, 1, 2, 3, 4))

start_handler = CommandHandler("start", self.send_start)
self.dispatcher.add_handler(start_handler)
Expand Down

0 comments on commit fcd8292

Please sign in to comment.