# HG changeset patch # User Matt Harbison # Date 1574568146 18000 # Node ID 371765e775a2cb4c4b41eed10dbee0ceee8ab1f9 # Parent 88a306478556f48e43bfb0c187deba7741f9d9e2 webutil: add missing argument to join() Differential Revision: https://phab.mercurial-scm.org/D7516 diff -r 88a306478556 -r 371765e775a2 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)