From 0342a5b30b9ab2000cba68309cfd2530a793a2ac Mon Sep 17 00:00:00 2001 From: Avanatiker Date: Mon, 11 Apr 2016 12:36:59 +0200 Subject: [PATCH] Update timerbot.py The missing space bothered me. --- examples/timerbot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/timerbot.py b/examples/timerbot.py index d6fef455f..978df57af 100644 --- a/examples/timerbot.py +++ b/examples/timerbot.py @@ -44,7 +44,7 @@ def set(bot, update, args): # args[0] should contain the time for the timer in seconds due = int(args[0]) if due < 0: - bot.sendMessage(chat_id,text='Sorry we can not go back to future!') + bot.sendMessage(chat_id, text='Sorry we can not go back to future!') def alarm(bot): """ Inner function to send the alarm message """ bot.sendMessage(chat_id, text='Beep!')