add missing ")"

This commit is contained in:
jesopo 2019-09-20 10:43:23 +01:00
parent 1b3ee8e336
commit 691fdf8978

View file

@ -81,7 +81,7 @@ class Handler(http.server.BaseHTTPRequestHandler):
def _url_for(self, headers): def _url_for(self, headers):
return (lambda route, endpoint, args=[], get_params={}: return (lambda route, endpoint, args=[], get_params={}:
_module._url_for(route, endpoint, args, get_params, _module._url_for(route, endpoint, args, get_params,
headers.get("Host", None)) headers.get("Host", None)))
def _handle(self, method, path, endpoint, args): def _handle(self, method, path, endpoint, args):
headers = utils.CaseInsensitiveDict(dict(self.headers.items())) headers = utils.CaseInsensitiveDict(dict(self.headers.items()))