diff --git a/SimpleServer/simpleserver.py b/SimpleServer/simpleserver.py index 90bb219..24d4811 100644 --- a/SimpleServer/simpleserver.py +++ b/SimpleServer/simpleserver.py @@ -467,6 +467,7 @@ def path_to_url(path): def url_to_path(path): path = urllib.parse.unquote(path) path = path.strip('/') + path = path.split('?')[0] return pathclass.Path(path) def zip_directory(path):