2523:139f182b72f6 | 2525:8b507a9a2d40 |
---|---|
4 # | 4 # |
5 | 5 |
6 """ | 6 """ |
7 Module implementing an importer for Opera bookmarks. | 7 Module implementing an importer for Opera bookmarks. |
8 """ | 8 """ |
9 | |
10 from __future__ import unicode_literals # __IGNORE_WARNING__ | |
9 | 11 |
10 import os | 12 import os |
11 | 13 |
12 from PyQt4.QtCore import QCoreApplication, QDate, Qt | 14 from PyQt4.QtCore import QCoreApplication, QDate, Qt |
13 | 15 |
57 Constructor | 59 Constructor |
58 | 60 |
59 @param id source ID (string) | 61 @param id source ID (string) |
60 @param parent reference to the parent object (QObject) | 62 @param parent reference to the parent object (QObject) |
61 """ | 63 """ |
62 super().__init__(id, parent) | 64 super(OperaImporter, self).__init__(id, parent) |
63 | 65 |
64 self.__fileName = "" | 66 self.__fileName = "" |
65 | 67 |
66 def setPath(self, path): | 68 def setPath(self, path): |
67 """ | 69 """ |