diff -r 139f182b72f6 -r 8b507a9a2d40 UI/AuthenticationDialog.py --- a/UI/AuthenticationDialog.py Sun Mar 24 13:52:12 2013 +0100 +++ b/UI/AuthenticationDialog.py Mon Mar 25 03:11:06 2013 +0100 @@ -7,6 +7,8 @@ Module implementing the authentication dialog for the help browser. """ +from __future__ import unicode_literals # __IGNORE_WARNING__ + from PyQt4.QtGui import QDialog, QStyle from .Ui_AuthenticationDialog import Ui_AuthenticationDialog @@ -25,7 +27,7 @@ @param showSave flag to indicate to show the save checkbox (boolean) @param saveIt flag indicating the value for the save checkbox (boolean) """ - super().__init__(parent) + super(AuthenticationDialog, self).__init__(parent) self.setupUi(self) self.infoLabel.setText(info)