WebBrowser/Bookmarks/BookmarksImporters/BookmarksImporter.py

changeset 5605
1950fe1a32c4
parent 5389
9b1c800daff3
child 6048
82ad8ec9548c
--- a/WebBrowser/Bookmarks/BookmarksImporters/BookmarksImporter.py	Sat Mar 11 18:08:42 2017 +0100
+++ b/WebBrowser/Bookmarks/BookmarksImporters/BookmarksImporter.py	Sat Mar 11 19:17:59 2017 +0100
@@ -16,11 +16,11 @@
     """
     Class implementing the base class for the bookmarks importers.
     """
-    def __init__(self, id="", parent=None):
+    def __init__(self, sourceId="", parent=None):
         """
         Constructor
         
-        @param id source ID (string)
+        @param sourceId source ID (string)
         @param parent reference to the parent object (QObject)
         """
         super(BookmarksImporter, self).__init__(parent)
@@ -29,7 +29,7 @@
         self._file = ""
         self._error = False
         self._errorString = ""
-        self._id = id
+        self._id = sourceId
     
     def setPath(self, path):
         """

eric ide

mercurial