diff -r 139f182b72f6 -r 8b507a9a2d40 Project/LexerAssociationDialog.py --- 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(), "")