Skip to content
Snippets Groups Projects
Commit 3972d090 authored by Pierre-Yves David's avatar Pierre-Yves David :octopus:
Browse files

hgweb: update _runwsgi try/except range to be valid

The `tmpl` variable is used in the `except` and `finally`, so we need it created
before the `try` is open.
parent 011eec5a
No related branches found
No related tags found
1 merge request!744fixes various issue pointed by newer pytype
......@@ -410,6 +410,5 @@
gc.collect(generation=1)
def _runwsgi(self, req, res):
try:
self.refresh()
self.refresh()
......@@ -415,5 +414,5 @@
csp, nonce = cspvalues(self.ui)
if csp:
res.headers[b'Content-Security-Policy'] = csp
csp, nonce = cspvalues(self.ui)
if csp:
res.headers[b'Content-Security-Policy'] = csp
......@@ -419,6 +418,7 @@
virtual = req.dispatchpath.strip(b'/')
tmpl = self.templater(req, nonce)
virtual = req.dispatchpath.strip(b'/')
tmpl = self.templater(req, nonce)
try:
ctype = tmpl.render(b'mimetype', {b'encoding': encoding.encoding})
# Global defaults. These can be overridden by any handler.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment