Mercurial > hg
changeset 24846:e79dd1c9753e stable
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.
author | Pierre-Yves David <pierre-yves.david@fb.com> |
---|---|
date | Fri, 24 Apr 2015 00:46:48 +0100 |
parents | 8133494accf1 |
children | b705e5ab3b07 |
files | mercurial/bundle2.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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):