QScintilla/EditorAssembly.py

branch
Py2 comp.
changeset 2525
8b507a9a2d40
parent 2409
df3820f08247
child 2791
a9577f248f04
--- 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)

eric ide

mercurial