equal
deleted
inserted
replaced
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 |