ProjectDjangoTagsMenu/TimezoneSelectionDialog.py

changeset 16
f2d493540f04
parent 12
8bc18ea91897
child 23
070a6c65c8a9
--- a/ProjectDjangoTagsMenu/TimezoneSelectionDialog.py	Sun Feb 16 16:02:44 2014 +0100
+++ b/ProjectDjangoTagsMenu/TimezoneSelectionDialog.py	Sun Feb 16 16:12:58 2014 +0100
@@ -7,6 +7,8 @@
 Module implementing a dialog to select a time zone.
 """
 
+from __future__ import unicode_literals    # __IGNORE_WARNING__
+
 from PyQt4.QtCore import pyqtSlot
 from PyQt4.QtGui import QDialog, QDialogButtonBox
 
@@ -514,7 +516,7 @@
         
         @param parent reference to the parent widget (QWidget)
         """
-        super().__init__(parent)
+        super(TimezoneSelectionDialog, self).__init__(parent)
         self.setupUi(self)
         
         self.buttonBox.button(QDialogButtonBox.Ok).setEnabled(False)

eric ide

mercurial