Mercurial > hg-stable
changeset 43442:371765e775a2 stable
webutil: add missing argument to join()
Differential Revision: https://phab.mercurial-scm.org/D7516
author | Matt Harbison <matt_harbison@yahoo.com> |
---|---|
date | Sat, 23 Nov 2019 23:02:26 -0500 |
parents | 88a306478556 |
children | 558f7585afcb |
files | mercurial/hgweb/webutil.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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)