mercurial/bundle2.py
changeset 22338 8fcd56095d3b
parent 22337 c380fe290290
child 22340 394a17de6a2d
equal deleted inserted replaced
22337:c380fe290290 22338:8fcd56095d3b
   905     """add a stream of obsmarkers to the repo"""
   905     """add a stream of obsmarkers to the repo"""
   906     tr = op.gettransaction()
   906     tr = op.gettransaction()
   907     new = op.repo.obsstore.mergemarkers(tr, inpart.read())
   907     new = op.repo.obsstore.mergemarkers(tr, inpart.read())
   908     if new:
   908     if new:
   909         op.repo.ui.status(_('%i new obsolescence markers\n') % new)
   909         op.repo.ui.status(_('%i new obsolescence markers\n') % new)
       
   910     op.records.add('obsmarkers', {'new': new})