From 2c8e2d14e4964f80f27694ddaaa625627b5fc865 Mon Sep 17 00:00:00 2001 From: Chris Jones Date: Tue, 22 Dec 2009 00:25:05 +0000 Subject: [PATCH] port to new borg __init__() --- terminatorlib/factory.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terminatorlib/factory.py b/terminatorlib/factory.py index 2cc6ff5f..54b3a427 100755 --- a/terminatorlib/factory.py +++ b/terminatorlib/factory.py @@ -12,7 +12,7 @@ class Factory(Borg): """Definition of a class that makes other classes""" def __init__(self): """Class initialiser""" - Borg.__init__(self) + Borg.__init__(self, self.__class__.__name__) self.prepare_attributes() def prepare_attributes(self):