diff -r 139f182b72f6 -r 8b507a9a2d40 E5Gui/E5MessageBox.py --- a/E5Gui/E5MessageBox.py Sun Mar 24 13:52:12 2013 +0100 +++ b/E5Gui/E5MessageBox.py Mon Mar 25 03:11:06 2013 +0100 @@ -7,6 +7,8 @@ Module implementing QMessageBox replacements and more convenience function. """ +from __future__ import unicode_literals # __IGNORE_WARNING__ + from PyQt4.QtCore import Qt from PyQt4.QtGui import QMessageBox, QApplication @@ -78,7 +80,7 @@ @keyparam buttons set of standard buttons to generate (StandardButtons) @keyparam parent parent widget of the message box (QWidget) """ - super().__init__(parent) + super(E5MessageBox, self).__init__(parent) self.setIcon(icon) if modal: if parent is not None: