# HG changeset patch # User Pierre-Yves David # Date 1429832808 -3600 # Node ID e79dd1c9753e96e82ddb786971f0f85165f6f8ef # Parent 8133494accf1bd1bd8c6d1fbcd486ac5fa050643 bundle2: issue remote output as "status" (issue4612) Remote output should be silenced by --quiet. The issue was found while running `test-largefiles-cache.t` so it will get tested once we switch bundle2 by default. diff -r 8133494accf1 -r e79dd1c9753e mercurial/bundle2.py --- a/mercurial/bundle2.py Thu Apr 23 14:27:26 2015 -0700 +++ b/mercurial/bundle2.py Fri Apr 24 00:46:48 2015 +0100 @@ -1171,7 +1171,7 @@ def handleoutput(op, inpart): """forward output captured on the server to the client""" for line in inpart.read().splitlines(): - op.ui.write(('remote: %s\n' % line)) + op.ui.status(('remote: %s\n' % line)) @parthandler('replycaps') def handlereplycaps(op, inpart):