mercurial/templater.py
changeset 27892 83aef8d5bc1b
parent 27891 ac8c0ee5c3b8
child 27939 7ed3a3c0cef1
--- a/mercurial/templater.py	Sat Jan 16 13:42:37 2016 +0900
+++ b/mercurial/templater.py	Sat Jan 16 13:53:32 2016 +0900
@@ -432,7 +432,7 @@
         raise error.ParseError(_("get() expects a dict as first argument"))
 
     key = args[1][0](context, mapping, args[1][1])
-    yield dictarg.get(key)
+    return dictarg.get(key)
 
 def if_(context, mapping, args):
     """:if(expr, then[, else]): Conditionally execute based on the result of