diff -r 139f182b72f6 -r 8b507a9a2d40 Tasks/TaskViewer.py --- a/Tasks/TaskViewer.py Sun Mar 24 13:52:12 2013 +0100 +++ b/Tasks/TaskViewer.py Mon Mar 25 03:11:06 2013 +0100 @@ -11,6 +11,8 @@ introductory text. This text is configurable. """ +from __future__ import unicode_literals # __IGNORE_WARNING__ + import os import fnmatch @@ -46,7 +48,7 @@ @param parent the parent (QWidget) @param project reference to the project object """ - super().__init__(parent) + super(TaskViewer, self).__init__(parent) self.setRootIsDecorated(False) self.setItemsExpandable(False)