##// END OF EJS Templates
wireproto: use %d to encode int, not %s...
Augie Fackler -
r34732:31fdd050 default
parent child Browse files
Show More
@@ -907,7 +907,7 b' def lookup(repo, proto, key):'
907 907 except Exception as inst:
908 908 r = str(inst)
909 909 success = 0
910 return "%s %s\n" % (success, r)
910 return "%d %s\n" % (success, r)
911 911
912 912 @wireprotocommand('known', 'nodes *')
913 913 def known(repo, proto, nodes, others):
General Comments 0
You need to be logged in to leave comments. Login now