--- a/QScintilla/APIsManager.py Sun Mar 24 13:52:12 2013 +0100 +++ b/QScintilla/APIsManager.py Mon Mar 25 03:11:06 2013 +0100 @@ -7,6 +7,8 @@ Module implementing the APIsManager. """ +from __future__ import unicode_literals # __IGNORE_WARNING__ + import os from PyQt4.QtCore import QDir, QFileInfo, pyqtSignal, QObject @@ -38,7 +40,7 @@ for a preparation process (boolean) @param parent reference to the parent object (QObject) """ - super().__init__(parent) + super(APIs, self).__init__(parent) self.setObjectName("APIs_{0}".format(language)) self.__inPreparation = False @@ -205,7 +207,7 @@ @param parent reference to the parent object (QObject) """ - super().__init__(parent) + super(APIsManager, self).__init__(parent) self.setObjectName("APIsManager") self.__apis = {}