webutil: add missing argument to join() stable
authorMatt Harbison <matt_harbison@yahoo.com>
Sat, 23 Nov 2019 23:02:26 -0500
branchstable
changeset 43737 371765e775a2
parent 43734 88a306478556
child 43738 558f7585afcb
webutil: add missing argument to join() Differential Revision: https://phab.mercurial-scm.org/D7516
mercurial/hgweb/webutil.py
--- a/mercurial/hgweb/webutil.py	Wed Nov 20 19:07:02 2019 +0100
+++ b/mercurial/hgweb/webutil.py	Sat Nov 23 23:02:26 2019 -0500
@@ -865,7 +865,7 @@
         raise error.ParseError(_(b'not displayable without template'))
 
     def show(self, context, mapping):
-        return self.join(context, b'')
+        return self.join(context, mapping, b'')
 
     def tobool(self, context, mapping):
         return bool(self._vars)