Show More
@@ -378,6 +378,16 b' class converter(object):' | |||||
378 | if tagsparents: |
|
378 | if tagsparents: | |
379 | self.map[tagsparents[0][0]] = nrev |
|
379 | self.map[tagsparents[0][0]] = nrev | |
380 |
|
380 | |||
|
381 | bookmarks = self.source.getbookmarks() | |||
|
382 | cbookmarks = {} | |||
|
383 | for k in bookmarks: | |||
|
384 | v = bookmarks[k] | |||
|
385 | if self.map.get(v, SKIPREV) != SKIPREV: | |||
|
386 | cbookmarks[k] = self.map[v] | |||
|
387 | ||||
|
388 | if c and cbookmarks: | |||
|
389 | self.dest.putbookmarks(cbookmarks) | |||
|
390 | ||||
381 | self.writeauthormap() |
|
391 | self.writeauthormap() | |
382 | finally: |
|
392 | finally: | |
383 | self.cleanup() |
|
393 | self.cleanup() |
General Comments 0
You need to be logged in to leave comments.
Login now