Submitter | David Soria Parra |
---|---|
Date | March 13, 2014, 11:10 p.m. |
Message ID | <882b4e7f82a01f62c1ae.1394752234@dev544.prn1.facebook.com> |
Download | mbox | patch |
Permalink | /patch/3945/ |
State | Superseded |
Headers | show |
Comments
Patch
diff --git a/hgext/histedit.py b/hgext/histedit.py --- a/hgext/histedit.py +++ b/hgext/histedit.py @@ -565,7 +565,7 @@ remote = None root = findoutgoing(ui, repo, remote, force, opts) else: - root = revs[0] + root = 'min(%s)' % revs[0] root = scmutil.revsingle(repo, root).node() keep = opts.get('keep', False)