summaryrefslogtreecommitdiff
path: root/data/rbot
diff options
context:
space:
mode:
authorGiuseppe Bilotta <giuseppe.bilotta@gmail.com>2007-02-20 08:19:03 +0000
committerGiuseppe Bilotta <giuseppe.bilotta@gmail.com>2007-02-20 08:19:03 +0000
commitbae0027e9c1b9ff2526022c63b984710605ffc12 (patch)
treedfc6a1acacd0c63c2a6d7a76afb6106c22f7121d /data/rbot
parent6e16568665a242c645322d1f9cd144d55a87817e (diff)
remind plugin: fix for repeated reminders failing after [717].
Diffstat (limited to 'data/rbot')
-rw-r--r--data/rbot/plugins/remind.rb2
1 files changed, 1 insertions, 1 deletions
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