Submitter | phabricator |
---|---|
Date | Dec. 29, 2017, 12:50 a.m. |
Message ID | <differential-rev-PHID-DREV-d5gwfdzf63hfl4onbfte-req@phab.mercurial-scm.org> |
Download | mbox | patch |
Permalink | /patch/26495/ |
State | Superseded |
Headers | show |
Comments
Patch
diff --git a/mercurial/templater.py b/mercurial/templater.py --- a/mercurial/templater.py +++ b/mercurial/templater.py @@ -397,7 +397,7 @@ # pair instead of **props props = context._resources.copy() props.update(mapping) - return v(**props) + return v(**pycompat.strkwargs(props)) return v def buildtemplate(exp, context):