Mercurial > hg-stable
changeset 26701:b1a0c534d9b4
repair: use cg?unpacker.apply() instead of changegroup.addchangegroup()
author | Augie Fackler <augie@google.com> |
---|---|
date | Tue, 13 Oct 2015 17:12:46 -0400 |
parents | dbc3d945ba36 |
children | ec182d109dce |
files | mercurial/repair.py |
diffstat | 1 files changed, 1 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/repair.py Tue Oct 13 17:12:29 2015 -0400 +++ b/mercurial/repair.py Tue Oct 13 17:12:46 2015 -0400 @@ -197,9 +197,7 @@ finally: tr.release() else: - changegroup.addchangegroup(repo, gen, 'strip', - 'bundle:' + vfs.join(chgrpfile), - True) + gen.apply(repo, 'strip', 'bundle:' + vfs.join(chgrpfile), True) if not repo.ui.verbose: repo.ui.popbuffer() f.close() @@ -310,4 +308,3 @@ "ancestors(head() and not bookmark(%s)) - " "ancestors(bookmark() and not bookmark(%s))", mark, mark, mark) -