mercurial/bundle2.py
branchstable
changeset 29851 ccd436f7db6d
parent 29847 9a9629b9416c
child 29937 2c302c654451
equal deleted inserted replaced
29850:0f90249a6547 29851:ccd436f7db6d
  1469 
  1469 
  1470 @parthandler('output')
  1470 @parthandler('output')
  1471 def handleoutput(op, inpart):
  1471 def handleoutput(op, inpart):
  1472     """forward output captured on the server to the client"""
  1472     """forward output captured on the server to the client"""
  1473     for line in inpart.read().splitlines():
  1473     for line in inpart.read().splitlines():
  1474         op.ui.status(('remote: %s\n' % line))
  1474         op.ui.status(_('remote: %s\n') % line)
  1475 
  1475 
  1476 @parthandler('replycaps')
  1476 @parthandler('replycaps')
  1477 def handlereplycaps(op, inpart):
  1477 def handlereplycaps(op, inpart):
  1478     """Notify that a reply bundle should be created
  1478     """Notify that a reply bundle should be created
  1479 
  1479