TimeTracker/TimeTrackerEntryDialog.py

changeset 36
d3312087bb1d
parent 31
db0afa672b75
child 42
37049a04b8fa
diff -r cec89eb19c5c -r d3312087bb1d TimeTracker/TimeTrackerEntryDialog.py
--- a/TimeTracker/TimeTrackerEntryDialog.py	Sat Feb 23 15:33:17 2013 +0100
+++ b/TimeTracker/TimeTrackerEntryDialog.py	Sat Aug 24 22:34:40 2013 +0200
@@ -7,6 +7,8 @@
 Module implementing the time tracker edit dialog.
 """
 
+from __future__ import unicode_literals    # __IGNORE_WARNING__
+
 from PyQt4.QtCore import pyqtSlot, QDateTime, QDate
 from PyQt4.QtGui import QDialog, QDialogButtonBox
 
@@ -29,7 +31,7 @@
             comment combo box (list of strings)
         @param parent reference to the parent widget (QWidget)
         """
-        super().__init__(parent)
+        super(TimeTrackerEntryDialog, self).__init__(parent)
         self.setupUi(self)
         
         self.buttonBox.button(QDialogButtonBox.Ok).setEnabled(False)

eric ide

mercurial