[PATCH] wireproto: remove a debug print

Pierre-Yves David pierre-yves.david at ens-lyon.org
Wed Jul 1 23:59:22 UTC 2015


# HG changeset patch
# User Pierre-Yves David <pierre-yves.david at fb.com>
# Date 1435726960 25200
#      Tue Jun 30 22:02:40 2015 -0700
# Node ID 4a7b98fbb1005ecd7b522ea67a01fba7d7ea1fbb
# Parent  c76e8d14383a44a740d986d87db6f58276fb57e8
wireproto: remove a debug print

This looks like someone forgot something here.

diff --git a/mercurial/wireproto.py b/mercurial/wireproto.py
--- a/mercurial/wireproto.py
+++ b/mercurial/wireproto.py
@@ -173,11 +173,10 @@ def decodelist(l, sep=' '):
 
 def encodelist(l, sep=' '):
     try:
         return sep.join(map(hex, l))
     except TypeError:
-        print l
         raise
 
 # batched call argument encoding
 
 def escapearg(plain):


More information about the Mercurial-devel mailing list