port to new borg __init__()

This commit is contained in:
Chris Jones 2009-12-22 00:25:05 +00:00
parent 4a96bf99d4
commit 2c8e2d14e4
1 changed files with 1 additions and 1 deletions

View File

@ -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):