mercurial/repair.py
changeset 23895 cda18ded2c48
parent 23878 37a92908a382
child 23898 b21c2e0ee8a3
equal deleted inserted replaced
23894:f388ceae2250 23895:cda18ded2c48
    29 
    29 
    30     if compress:
    30     if compress:
    31         bundletype = "HG10BZ"
    31         bundletype = "HG10BZ"
    32     else:
    32     else:
    33         bundletype = "HG10UN"
    33         bundletype = "HG10UN"
    34     return changegroup.writebundle(cg, name, bundletype, vfs)
    34     return changegroup.writebundle(repo.ui, cg, name, bundletype, vfs)
    35 
    35 
    36 def _collectfiles(repo, striprev):
    36 def _collectfiles(repo, striprev):
    37     """find out the filelogs affected by the strip"""
    37     """find out the filelogs affected by the strip"""
    38     files = set()
    38     files = set()
    39 
    39