From 04f11f97df0c820cfae67073d8a99abb3ef38dc1 Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Wed, 22 Feb 2017 22:15:29 -0600 Subject: [PATCH] countdown: provide feedback when reminder created bss/dr.botzo!16 --- countdown/ircplugin.py | 1 + 1 file changed, 1 insertion(+) diff --git a/countdown/ircplugin.py b/countdown/ircplugin.py index 90c5091..01eb9d7 100644 --- a/countdown/ircplugin.py +++ b/countdown/ircplugin.py @@ -123,6 +123,7 @@ class Countdown(Plugin): countdown_item = CountdownItem.objects.create(name=item_name, at_time=when_t, is_reminder=True, reminder_message=message, reminder_target=sent_location) log.info("created countdown item %s", str(countdown_item)) + self.bot.reply(event, "ok, i'll message {0:s} at {1:s}".format(sent_location, str(when_t))) return 'NO MORE'