add missing ")"
This commit is contained in:
parent
1b3ee8e336
commit
691fdf8978
1 changed files with 1 additions and 1 deletions
|
@ -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()))
|
||||||
|
|
Loading…
Reference in a new issue