From 614fa220384ab7689141c3e6371ae6dd2057c203 Mon Sep 17 00:00:00 2001 From: James Vega Date: Sat, 15 Nov 2008 06:33:50 +0000 Subject: [PATCH] Fix a syntax error in the last command flood commit --- plugins/Owner/plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Owner/plugin.py b/plugins/Owner/plugin.py index 8cd553b62..cd44ec15c 100644 --- a/plugins/Owner/plugin.py +++ b/plugins/Owner/plugin.py @@ -290,7 +290,7 @@ class Owner(callbacks.Plugin): irc.reply('You\'ve given me %s commands within the last ' 'minute; I\'m now ignoring you for %s.' % (maximum, - utils.timeElapsed(punishment, seconds=False)) + utils.timeElapsed(punishment, seconds=False))) return try: tokens = callbacks.tokenize(s, channel=msg.args[0])