PluginManager/PluginRepositoryDialog.py

branch
Py2 comp.
changeset 2525
8b507a9a2d40
parent 2404
cba0ff902c2b
child 2847
1843ef6e2656
--- a/PluginManager/PluginRepositoryDialog.py	Sun Mar 24 13:52:12 2013 +0100
+++ b/PluginManager/PluginRepositoryDialog.py	Mon Mar 25 03:11:06 2013 +0100
@@ -8,6 +8,8 @@
 Module implementing a dialog showing the available plugins.
 """
 
+from __future__ import unicode_literals    # __IGNORE_WARNING__
+
 import sys
 import os
 import zipfile
@@ -57,7 +59,7 @@
         
         @param parent parent of this dialog (QWidget)
         """
-        super().__init__(parent)
+        super(PluginRepositoryWidget, self).__init__(parent)
         self.setupUi(self)
         
         self.__updateButton = \
@@ -536,7 +538,7 @@
         
         @param parent reference to the parent widget (QWidget)
         """
-        super().__init__(parent)
+        super(PluginRepositoryDialog, self).__init__(parent)
         self.setSizeGripEnabled(True)
         
         self.__layout = QVBoxLayout(self)
@@ -577,7 +579,7 @@
         
         @param parent reference to the parent widget (QWidget)
         """
-        super().__init__(parent)
+        super(PluginRepositoryWindow, self).__init__(parent)
         self.cw = PluginRepositoryWidget(self, external=True)
         size = self.cw.size()
         self.setCentralWidget(self.cw)

eric ide

mercurial