Network/IRC/IrcServerEditDialog.py

branch
Py2 comp.
changeset 2525
8b507a9a2d40
parent 2404
cba0ff902c2b
child 3145
a9de05d4a22f
--- a/Network/IRC/IrcServerEditDialog.py	Sun Mar 24 13:52:12 2013 +0100
+++ b/Network/IRC/IrcServerEditDialog.py	Mon Mar 25 03:11:06 2013 +0100
@@ -7,6 +7,8 @@
 Module implementing a dialog for editing the IRC server configuration.
 """
 
+from __future__ import unicode_literals    # __IGNORE_WARNING__
+
 from PyQt4.QtCore import pyqtSlot
 from PyQt4.QtGui import QDialog, QDialogButtonBox
 
@@ -24,7 +26,7 @@
         @param server reference to the IRC server object (IrcServer)
         @param parent reference to the parent widget (QWidget)
         """
-        super().__init__(parent)
+        super(IrcServerEditDialog, self).__init__(parent)
         self.setupUi(self)
         
         self.__okButton = self.buttonBox.button(QDialogButtonBox.Ok)

eric ide

mercurial