--- a/Helpviewer/GreaseMonkey/GreaseMonkeyConfiguration/GreaseMonkeyConfigurationScriptInfoDialog.py Sun Mar 24 13:52:12 2013 +0100 +++ b/Helpviewer/GreaseMonkey/GreaseMonkeyConfiguration/GreaseMonkeyConfigurationScriptInfoDialog.py Mon Mar 25 03:11:06 2013 +0100 @@ -7,6 +7,8 @@ Module implementing a dialog to show GreaseMonkey script information. """ +from __future__ import unicode_literals # __IGNORE_WARNING__ + from PyQt4.QtCore import pyqtSlot from PyQt4.QtGui import QDialog @@ -30,7 +32,7 @@ @param script reference to the script (GreaseMonkeyScript) @param parent reference to the parent widget (QWidget) """ - super().__init__(parent) + super(GreaseMonkeyConfigurationScriptInfoDialog, self).__init__(parent) self.setupUi(self) self.iconLabel.setPixmap(UI.PixmapCache.getPixmap("greaseMonkey48.png"))