diff hgext/bookmarks.py @ 13050:3790452d499b

pushkey: use UTF-8
author Matt Mackall <mpm@selenic.com>
date Sun, 28 Nov 2010 18:21:47 -0600
parents e298cca2d53a
children 5dac0d04b838
line wrap: on
line diff
--- a/hgext/bookmarks.py	Wed Nov 24 16:10:37 2010 -0600
+++ b/hgext/bookmarks.py	Sun Nov 28 18:21:47 2010 -0600
@@ -334,7 +334,7 @@
             rb = remote.listkeys('bookmarks')
             for k in rb.keys():
                 if k in self._bookmarks:
-                    nr, nl = rb[k], self._bookmarks[k]
+                    nr, nl = rb[k], hex(self._bookmarks[k])
                     if nr in self:
                         cr = self[nr]
                         cl = self[nl]