From 4285df08097374f09a5144b2cbfc537c875f0952 Mon Sep 17 00:00:00 2001 From: James Vega Date: Thu, 23 Apr 2009 16:05:31 -0400 Subject: [PATCH] Factoids: Fix thinko in getCommandHelp Signed-off-by: James Vega --- plugins/Factoids/plugin.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/Factoids/plugin.py b/plugins/Factoids/plugin.py index 44857be0d..ab138f4b5 100644 --- a/plugins/Factoids/plugin.py +++ b/plugins/Factoids/plugin.py @@ -1,5 +1,6 @@ ### # Copyright (c) 2002-2005, Jeremiah Fincher +# Copyright (c) 2009, James Vega # All rights reserved. # # Redistribution and use in source and binary forms, with or without @@ -114,7 +115,7 @@ class Factoids(callbacks.Plugin, plugins.ChannelDBHandler): return help(method, doc=method._fake__doc__ % (s, s), name=callbacks.formatCommand(command)) - return super(Factoids, self).getCommandHelp(self, command) + return super(Factoids, self).getCommandHelp(command) def learn(self, irc, msg, args, channel, key, factoid): db = self.getDb(channel)