diff --git a/modules/remind.py b/modules/remind.py index 77480ba..bfb13aa 100755 --- a/modules/remind.py +++ b/modules/remind.py @@ -43,7 +43,7 @@ def remind(bot, trigger): reminder = ' '.join(trigger.args[2:]) args = (trigger.channel, trigger.nick, reminder) bot.scheduler.add_task(announce_reminder, dt, args) - bot.reply("Okay, will remind at", dt.strftime('[%Y-%m-%d %H:%M:%S]')) + bot.reply("Okay, will remind at " + dt.strftime('[%Y-%m-%d %H:%M:%S]')) @module.commands('at') @@ -70,7 +70,7 @@ def at(bot, trigger): args = (trigger.channel, trigger.nick, reminder) bot.scheduler.add_task(announce_reminder, dt, args) - bot.reply("Okay, will remind at", dt.strftime('[%Y-%m-%d %H:%M:%S]')) + bot.reply("Okay, will remind at " + dt.strftime('[%Y-%m-%d %H:%M:%S]')) def announce_reminder(bot, channel, remindee, reminder):