ProjectPyramid/FormSelectionDialog.py

changeset 56
c7adc68350dd
parent 34
d20f7218d53c
child 57
e654970c913e
--- a/ProjectPyramid/FormSelectionDialog.py	Sat Sep 28 13:34:57 2013 +0200
+++ b/ProjectPyramid/FormSelectionDialog.py	Sun Oct 27 22:43:17 2013 +0100
@@ -7,6 +7,8 @@
 Module implementing a dialog to select the template type.
 """
 
+from __future__ import unicode_literals    # __IGNORE_WARNING__
+
 from PyQt4.QtCore import pyqtSlot
 from PyQt4.QtGui import QDialog, QDialogButtonBox
 
@@ -23,7 +25,7 @@
         
         @param parent reference to the parent widget (QWidget)
         """
-        super().__init__(parent)
+        super(FormSelectionDialog, self).__init__(parent)
         self.setupUi(self)
         
         self.__templates = {

eric ide

mercurial