--- a/Plugins/CheckerPlugins/Pep8/Pep8CodeSelectionDialog.py Sun Mar 24 13:52:12 2013 +0100 +++ b/Plugins/CheckerPlugins/Pep8/Pep8CodeSelectionDialog.py Mon Mar 25 03:11:06 2013 +0100 @@ -7,6 +7,8 @@ Module implementing a dialog to select PEP 8 message codes. """ +from __future__ import unicode_literals # __IGNORE_WARNING__ + from PyQt4.QtCore import QCoreApplication from PyQt4.QtGui import QDialog, QTreeWidgetItem @@ -28,7 +30,7 @@ issues (boolean) @param parent reference to the parent widget (QWidget) """ - super().__init__(parent) + super(Pep8CodeSelectionDialog, self).__init__(parent) self.setupUi(self) codeList = [code.strip() for code in codes.split(",") if code.strip()]