Submitter | phabricator |
---|---|
Date | March 25, 2022, 5:38 a.m. |
Message ID | <differential-rev-PHID-DREV-cbs25jirzdscuwzdjayo-req@mercurial-scm.org> |
Download | mbox | patch |
Permalink | /patch/50753/ |
State | New |
Headers | show |
Comments
Patch
diff --git a/hgext/histedit.py b/hgext/histedit.py --- a/hgext/histedit.py +++ b/hgext/histedit.py @@ -2319,10 +2319,7 @@ def _getsummary(ctx): - # a common pattern is to extract the summary but default to the empty - # string - summary = ctx.description() or b'' - return stringutil.firstline(summary) + return stringutil.firstline(ctx.description()) def bootstrapcontinue(ui, state, opts):