From bae0027e9c1b9ff2526022c63b984710605ffc12 Mon Sep 17 00:00:00 2001 From: Giuseppe Bilotta Date: Tue, 20 Feb 2007 08:19:03 +0000 Subject: remind plugin: fix for repeated reminders failing after [717]. --- data/rbot/plugins/remind.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'data/rbot') diff --git a/data/rbot/plugins/remind.rb b/data/rbot/plugins/remind.rb index 78b3c0f2..6ce179c4 100644 --- a/data/rbot/plugins/remind.rb +++ b/data/rbot/plugins/remind.rb @@ -136,7 +136,7 @@ class RemindPlugin < Plugin if(repeat) @reminders[who][subject] = @bot.timer.add(period) { - tstr = (Time.now + period).time.strftime("%H:%M:%S") + tstr = (Time.now + period).strftime("%H:%M:%S") @bot.say who, "repeat reminder (next at #{tstr}): #{subject}" } else -- cgit v1.2.3