Show More
@@ -410,12 +410,12 b' class mercurial_sink(converter_sink):' | |||
|
410 | 410 | def putbookmarks(self, updatedbookmark): |
|
411 | 411 | if not len(updatedbookmark): |
|
412 | 412 | return |
|
413 | ||
|
414 | self.ui.status(_("updating bookmarks\n")) | |
|
415 | destmarks = self.repo._bookmarks | |
|
416 | for bookmark in updatedbookmark: | |
|
417 | destmarks[bookmark] = bin(updatedbookmark[bookmark]) | |
|
418 | destmarks.write() | |
|
413 | if True: | |
|
414 | self.ui.status(_("updating bookmarks\n")) | |
|
415 | destmarks = self.repo._bookmarks | |
|
416 | for bookmark in updatedbookmark: | |
|
417 | destmarks[bookmark] = bin(updatedbookmark[bookmark]) | |
|
418 | destmarks.write() | |
|
419 | 419 | |
|
420 | 420 | def hascommitfrommap(self, rev): |
|
421 | 421 | # the exact semantics of clonebranches is unclear so we can't say no |
General Comments 0
You need to be logged in to leave comments.
Login now