diff -r a3ba38d3a25e -r c7adc68350dd ProjectPyramid/ConfigurationPage/PyramidPage.py --- a/ProjectPyramid/ConfigurationPage/PyramidPage.py Sat Sep 28 13:34:57 2013 +0200 +++ b/ProjectPyramid/ConfigurationPage/PyramidPage.py Sun Oct 27 22:43:17 2013 +0100 @@ -7,6 +7,8 @@ Module implementing the Pyramid configuration page. """ +from __future__ import unicode_literals # __IGNORE_WARNING__ + from PyQt4.QtCore import pyqtSlot from E5Gui.E5Completers import E5DirCompleter @@ -30,7 +32,7 @@ @param plugin reference to the plugin object """ - super().__init__() + super(PyramidPage, self).__init__() self.setupUi(self) self.setObjectName("PyramidPage")