comparison: eric6/WebBrowser/Bookmarks/BookmarksImporters/FirefoxImporter.py
eric6/WebBrowser/Bookmarks/BookmarksImporters/FirefoxImporter.py
- changeset 7628
- f904d0eef264
- parent 7533
- 88261c96484b
- child 7781
- 607a6098cb44
equal
deleted
inserted
replaced
148 title = row[1] |
148 title = row[1] |
149 placesId = row[2] |
149 placesId = row[2] |
150 |
150 |
151 cursor2 = self.__db.cursor() |
151 cursor2 = self.__db.cursor() |
152 cursor2.execute( |
152 cursor2.execute( |
153 "SELECT url FROM moz_places WHERE id = {0}" |
153 "SELECT url FROM moz_places WHERE id = {0}" # secok |
154 .format(placesId)) |
154 .format(placesId)) |
155 row2 = cursor2.fetchone() |
155 row2 = cursor2.fetchone() |
156 if row2: |
156 if row2: |
157 url = QUrl(row2[0]) |
157 url = QUrl(row2[0]) |
158 if ( |
158 if ( |