# HG changeset patch # User Akihiko Odaki # Date 2016-09-01 18:16:55 # Node ID ccd436f7db6d5d7b9af89715179b911d031d44f1 # Parent 0f90249a65472ae6d3177880dcdc8a6a16eadaa2 bundle2: localize handleoutput remote prompts Code archaeology suggests that there was no good reason for this not to be localized. 'remote: ' is already localized elsewhere. diff --git a/mercurial/bundle2.py b/mercurial/bundle2.py --- a/mercurial/bundle2.py +++ b/mercurial/bundle2.py @@ -1471,7 +1471,7 @@ def handlecheckheads(op, inpart): def handleoutput(op, inpart): """forward output captured on the server to the client""" for line in inpart.read().splitlines(): - op.ui.status(('remote: %s\n' % line)) + op.ui.status(_('remote: %s\n') % line) @parthandler('replycaps') def handlereplycaps(op, inpart):