diff -r 139f182b72f6 -r 8b507a9a2d40 Helpviewer/Bookmarks/BookmarksImporters/BookmarksImporter.py --- a/Helpviewer/Bookmarks/BookmarksImporters/BookmarksImporter.py Sun Mar 24 13:52:12 2013 +0100 +++ b/Helpviewer/Bookmarks/BookmarksImporters/BookmarksImporter.py Mon Mar 25 03:11:06 2013 +0100 @@ -7,6 +7,8 @@ Module implementing a base class for the bookmarks importers. """ +from __future__ import unicode_literals # __IGNORE_WARNING__ + from PyQt4.QtCore import QObject @@ -21,7 +23,7 @@ @param id source ID (string) @param parent reference to the parent object (QObject) """ - super().__init__(parent) + super(BookmarksImporter, self).__init__(parent) self._path = "" self._file = ""