Project/LexerAssociationDialog.py

branch
Py2 comp.
changeset 2525
8b507a9a2d40
parent 2408
dc3a7c9d8f6e
child 3057
10516539f238
--- a/Project/LexerAssociationDialog.py	Sun Mar 24 13:52:12 2013 +0100
+++ b/Project/LexerAssociationDialog.py	Mon Mar 25 03:11:06 2013 +0100
@@ -7,6 +7,8 @@
 Module implementing a dialog to enter lexer associations for the project.
 """
 
+from __future__ import unicode_literals    # __IGNORE_WARNING__
+
 import os
 
 from PyQt4.QtCore import Qt, pyqtSlot, qVersion
@@ -26,7 +28,7 @@
         @param project reference to the project object
         @param parent reference to the parent widget (QWidget)
         """
-        super().__init__(parent)
+        super(LexerAssociationDialog, self).__init__(parent)
         self.setupUi(self)
 
         self.editorLexerList.headerItem().setText(self.editorLexerList.columnCount(), "")

eric ide

mercurial