From 10e496eed06375df993548003ac400ed3dccdf7f Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Wed, 2 Feb 2005 17:10:20 +0000 Subject: [PATCH] Forgot to convert the response of time parsing to a string before replying with it. --- plugins/Time/plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Time/plugin.py b/plugins/Time/plugin.py index 6312e0026..23f9d8dc2 100644 --- a/plugins/Time/plugin.py +++ b/plugins/Time/plugin.py @@ -97,7 +97,7 @@ class Time(callbacks.Privmsg): now = int(time.time()) new = parse(s) if new != now: - irc.reply(new) + irc.reply(str(new)) else: irc.error('That\'s right now!') at = wrap(at, ['text'])