mirror of
https://github.com/Kozea/Radicale.git
synced 2025-07-02 16:58:30 +00:00
Remove unnecessary module prefix
This commit is contained in:
parent
664fa71278
commit
13d652b094
1 changed files with 1 additions and 1 deletions
|
@ -171,7 +171,7 @@ class RequestHandler(wsgiref.simple_server.WSGIRequestHandler):
|
|||
def get_environ(self):
|
||||
env = super().get_environ()
|
||||
# Parent class only tries latin1 encoding
|
||||
env["PATH_INFO"] = urllib.parse.unquote(self.path.split("?", 1)[0])
|
||||
env["PATH_INFO"] = unquote(self.path.split("?", 1)[0])
|
||||
return env
|
||||
|
||||
def handle(self):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue