author | Augie Fackler <augie@google.com> |
Thu, 18 May 2017 17:11:01 -0400 | |
changeset 32348 | 082fc4abdc31 |
parent 32347 | f4aee989ebec |
child 32349 | 81936f6462c1 |
hgext/rebase.py | file | annotate | diff | comparison | revisions |
--- a/hgext/rebase.py Thu May 18 17:10:53 2017 -0400 +++ b/hgext/rebase.py Thu May 18 17:11:01 2017 -0400 @@ -427,9 +427,8 @@ mergemod.mergestate.clean(repo) else: # Skip commit if we are collapsing - repo.dirstate.beginparentchange() - repo.setparents(repo[p1].node()) - repo.dirstate.endparentchange() + with repo.dirstate.parentchange(): + repo.setparents(repo[p1].node()) newnode = None # Update the state if newnode is not None: