From e5ba64bef8e99ab806c2d7d291fb5cdffe086136 Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Sun, 17 Jul 2011 01:15:30 -0400 Subject: [PATCH] content -> message, oops --- irc/commands/remind.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/irc/commands/remind.py b/irc/commands/remind.py index 6de1767..963f48c 100644 --- a/irc/commands/remind.py +++ b/irc/commands/remind.py @@ -31,8 +31,8 @@ class Remind(BaseCommand): except ValueError: self.connection.reply(data, "the time must be given as an integer, in seconds.") return - content = ' '.join(data.args[1:]) - if not content: + message = ' '.join(data.args[1:]) + if not message: self.connection.reply(data, "what message do you want me to give you when time is up?") return