--- a/Graphics/UMLDiagramBuilder.py Sun Mar 24 13:52:12 2013 +0100 +++ b/Graphics/UMLDiagramBuilder.py Mon Mar 25 03:11:06 2013 +0100 @@ -7,6 +7,8 @@ Module implementing the UML diagram builder base class. """ +from __future__ import unicode_literals # __IGNORE_WARNING__ + from PyQt4.QtCore import QObject @@ -22,7 +24,7 @@ @param view reference to the view object (UMLGraphicsView) @param project reference to the project object (Project) """ - super().__init__(dialog) + super(UMLDiagramBuilder, self).__init__(dialog) self.umlView = view self.scene = self.umlView.scene()