--- a/Plugins/PluginAbout.py Sun Mar 24 13:52:12 2013 +0100 +++ b/Plugins/PluginAbout.py Mon Mar 25 03:11:06 2013 +0100 @@ -7,6 +7,8 @@ Module implementing the About plugin. """ +from __future__ import unicode_literals # __IGNORE_WARNING__ + from PyQt4.QtCore import QObject from PyQt4.QtGui import QAction @@ -42,7 +44,7 @@ @param ui reference to the user interface object (UI.UserInterface) """ - super().__init__(ui) + super(AboutPlugin, self).__init__(ui) self.__ui = ui def activate(self):