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