D1645: py3: handle keyword arguments correctly in templater.py

pulkit (Pulkit Goyal) phabricator at mercurial-scm.org
Sat Dec 9 21:51:37 EST 2017


This revision was automatically updated to reflect the committed changes.
Closed by commit rHG073bc922d349: py3: handle keyword arguments correctly in templater.py (authored by pulkit, committed by ).

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D1645?vs=4324&id=4336

REVISION DETAIL
  https://phab.mercurial-scm.org/D1645

AFFECTED FILES
  mercurial/templater.py

CHANGE DETAILS

diff --git a/mercurial/templater.py b/mercurial/templater.py
--- a/mercurial/templater.py
+++ b/mercurial/templater.py
@@ -880,7 +880,7 @@
     if len(args) == 1:
         pattern = evalstring(context, mapping, args[0])
 
-    return templatekw.showlatesttags(pattern, **mapping)
+    return templatekw.showlatesttags(pattern, **pycompat.strkwargs(mapping))
 
 @templatefunc('localdate(date[, tz])')
 def localdate(context, mapping, args):
@@ -1063,7 +1063,8 @@
             revs = list(revs)
             revsetcache[raw] = revs
 
-    return templatekw.showrevslist("revision", revs, **mapping)
+    return templatekw.showrevslist("revision", revs,
+                                   **pycompat.strkwargs(mapping))
 
 @templatefunc('rstdoc(text, style)')
 def rstdoc(context, mapping, args):



To: pulkit, #hg-reviewers
Cc: mercurial-devel


More information about the Mercurial-devel mailing list