From 97ea0611ac38c0376458184e5bd44ca55d0116e0 Mon Sep 17 00:00:00 2001 From: James Scott Date: Thu, 13 Dec 2012 20:09:41 -0500 Subject: [PATCH] fixed the constructor --- plugin.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugin.py b/plugin.py index 703c9a5..4cbf2f6 100644 --- a/plugin.py +++ b/plugin.py @@ -48,6 +48,8 @@ class Cah(callbacks.Plugin): threaded = True def __init__(self, irc): + self.__parent = super(Cah, self) + self.__parent.__init__(irc) self.games = {} ###### UTIL METHODS ########