--- a/Project/NewPythonPackageDialog.py Sun Mar 24 13:52:12 2013 +0100 +++ b/Project/NewPythonPackageDialog.py Mon Mar 25 03:11:06 2013 +0100 @@ -7,6 +7,8 @@ Module implementing a dialog to add a new Python package. """ +from __future__ import unicode_literals # __IGNORE_WARNING__ + from PyQt4.QtGui import QDialog, QDialogButtonBox from PyQt4.QtCore import pyqtSlot @@ -23,7 +25,7 @@ @param relPath initial package path relative to the project root (string) """ - super().__init__(parent) + super(NewPythonPackageDialog, self).__init__(parent) self.setupUi(self) self.okButton = self.buttonBox.button(QDialogButtonBox.Ok)