Submitter | phabricator |
---|---|
Date | March 2, 2018, 2:51 p.m. |
Message ID | <differential-rev-PHID-DREV-q3f4ybzff6bg5qcbgitn-req@phab.mercurial-scm.org> |
Download | mbox | patch |
Permalink | /patch/28685/ |
State | Superseded |
Headers | show |
Comments
Patch
diff --git a/mercurial/templatekw.py b/mercurial/templatekw.py --- a/mercurial/templatekw.py +++ b/mercurial/templatekw.py @@ -205,7 +205,9 @@ yield separator.join(values) else: for v in values: - yield dict(v, **strmapping) + r = dict(v) + r.update(mapping) + yield r return startname = 'start_' + plural if startname in templ: