Submitter | phabricator |
---|---|
Date | Dec. 30, 2019, 1:33 p.m. |
Message ID | <dd1039dd652a3ee56ecbd77e7ee1cb2c@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/44135/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/hgext/histedit.py b/hgext/histedit.py --- a/hgext/histedit.py +++ b/hgext/histedit.py @@ -308,7 +308,7 @@ if len(a.verbs): v = b', '.join(sorted(a.verbs, key=lambda v: len(v))) actions.append(b" %s = %s" % (v, lines[0])) - actions.extend([b' %s' for l in lines[1:]]) + actions.extend([b' %s'] * (len(lines) - 1)) for v in ( sorted(primaryactions)