--- a/Network/IRC/IrcNetworkWidget.py Sun Mar 24 13:52:12 2013 +0100 +++ b/Network/IRC/IrcNetworkWidget.py Mon Mar 25 03:11:06 2013 +0100 @@ -7,6 +7,8 @@ Module implementing the network part of the IRC widget. """ +from __future__ import unicode_literals # __IGNORE_WARNING__ + from PyQt4.QtCore import pyqtSlot, pyqtSignal, QPoint, QFileInfo, QUrl from PyQt4.QtGui import QWidget, QApplication, QMenu, QDesktopServices @@ -47,7 +49,7 @@ @param parent reference to the parent widget (QWidget) """ - super().__init__(parent) + super(IrcNetworkWidget, self).__init__(parent) self.setupUi(self) self.connectButton.setIcon(UI.PixmapCache.getIcon("ircConnect.png"))