diff -r 139f182b72f6 -r 8b507a9a2d40 QScintilla/EditorAssembly.py --- a/QScintilla/EditorAssembly.py Sun Mar 24 13:52:12 2013 +0100 +++ b/QScintilla/EditorAssembly.py Mon Mar 25 03:11:06 2013 +0100 @@ -8,6 +8,8 @@ the editor widget. """ +from __future__ import unicode_literals # __IGNORE_WARNING__ + from PyQt4.QtCore import QTimer from PyQt4.QtGui import QWidget, QGridLayout, QComboBox @@ -31,7 +33,7 @@ @param editor reference to an Editor object, if this is a cloned view @param tv reference to the task viewer object """ - super().__init__() + super(EditorAssembly, self).__init__() self.__layout = QGridLayout(self) self.__layout.setContentsMargins(0, 0, 0, 0)