histedit: fix indent
authorMatt Mackall <mpm@selenic.com>
Mon, 13 Oct 2014 14:04:11 -0500
changeset 22900 7bf82faba774
parent 22899 67cb1ab1ad1d
child 22901 722117c8e023
histedit: fix indent The duplicatecopies call should be part of the rebase block.
hgext/histedit.py
--- 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):