wireproto: use pushkey.encodekey
authorPierre-Yves David <pierre-yves.david@fb.com>
Tue, 27 May 2014 15:00:08 -0700
changeset 21651 3aae044408aa
parent 21650 a2c7ae21e8f4
child 21652 ed6e61eaebc0
wireproto: use pushkey.encodekey
mercurial/wireproto.py
--- a/mercurial/wireproto.py	Tue May 27 14:57:28 2014 -0700
+++ b/mercurial/wireproto.py	Tue May 27 15:00:08 2014 -0700
@@ -8,7 +8,7 @@
 import urllib, tempfile, os, sys
 from i18n import _
 from node import bin, hex
-import changegroup as changegroupmod, bundle2
+import changegroup as changegroupmod, bundle2, pushkey as pushkeymod
 import peer, error, encoding, util, store, exchange
 
 
@@ -680,9 +680,7 @@
 @wireprotocommand('listkeys', 'namespace')
 def listkeys(repo, proto, namespace):
     d = repo.listkeys(encoding.tolocal(namespace)).items()
-    t = '\n'.join(['%s\t%s' % (encoding.fromlocal(k), encoding.fromlocal(v))
-                   for k, v in d])
-    return t
+    return pushkeymod.encodekeys(d)
 
 @wireprotocommand('lookup', 'key')
 def lookup(repo, proto, key):