diff -r 8accf5fa9930 -r 6ff1a0d109c9 mercurial/hgweb/webcommands.py --- a/mercurial/hgweb/webcommands.py Sat Nov 30 02:38:42 2019 -0500 +++ b/mercurial/hgweb/webcommands.py Sat Nov 30 02:53:39 2019 -0500 @@ -1321,7 +1321,7 @@ static = web.config(b"web", b"static", untrusted=False) if not static: tp = web.templatepath or templater.templatepaths() - if isinstance(tp, str): + if isinstance(tp, bytes): tp = [tp] static = [os.path.join(p, b'static') for p in tp]