2523:139f182b72f6 | 2525:8b507a9a2d40 |
---|---|
4 # | 4 # |
5 | 5 |
6 """ | 6 """ |
7 Module implementing an importer for Apple Safari bookmarks. | 7 Module implementing an importer for Apple Safari 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 |
59 Constructor | 61 Constructor |
60 | 62 |
61 @param id source ID (string) | 63 @param id source ID (string) |
62 @param parent reference to the parent object (QObject) | 64 @param parent reference to the parent object (QObject) |
63 """ | 65 """ |
64 super().__init__(id, parent) | 66 super(SafariImporter, self).__init__(id, parent) |
65 | 67 |
66 self.__fileName = "" | 68 self.__fileName = "" |
67 | 69 |
68 def setPath(self, path): | 70 def setPath(self, path): |
69 """ | 71 """ |