From 66076c0831ffcf64cf71fd85b85dc5afb445174d Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Fri, 27 May 2005 03:47:04 +0000 Subject: [PATCH] Removed a useless wrapper around a method that shouldn't exist. --- src/callbacks.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/callbacks.py b/src/callbacks.py index 6e4072535..146a37faf 100644 --- a/src/callbacks.py +++ b/src/callbacks.py @@ -1068,9 +1068,6 @@ class Commands(BasePlugin): def name(self): return self.__class__.__name__ - def __call__(self, *args, **kwargs): - super(Commands, self).__call__(*args, **kwargs) - def canonicalName(self): return canonicalName(self.name())