--- a/Debugger/EditBreakpointDialog.py Sun Mar 24 13:52:12 2013 +0100 +++ b/Debugger/EditBreakpointDialog.py Mon Mar 25 03:11:06 2013 +0100 @@ -7,6 +7,8 @@ Module implementing a dialog to edit breakpoint properties. """ +from __future__ import unicode_literals # __IGNORE_WARNING__ + import os.path from PyQt4.QtCore import pyqtSlot @@ -38,7 +40,7 @@ @param name the widget name of this dialog @param modal flag indicating a modal dialog """ - super().__init__(parent) + super(EditBreakpointDialog, self).__init__(parent) self.setupUi(self) if name: self.setObjectName(name)