Mercurial > hg
changeset 22900:7bf82faba774
histedit: fix indent
The duplicatecopies call should be part of the rebase block.
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Mon, 13 Oct 2014 14:04:11 -0500 |
parents | 67cb1ab1ad1d |
children | 722117c8e023 |
files | hgext/histedit.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/hgext/histedit.py Mon Oct 13 13:21:03 2014 -0500 +++ b/hgext/histedit.py Mon Oct 13 14:04:11 2014 -0500 @@ -234,7 +234,7 @@ repo.dirstate.endparentchange() repo.dirstate.write() # fix up dirstate for copies and renames - cmdutil.duplicatecopies(repo, ctx.rev(), ctx.p1().rev()) + cmdutil.duplicatecopies(repo, ctx.rev(), ctx.p1().rev()) return stats def collapse(repo, first, last, commitopts):