summaryrefslogtreecommitdiff
path: root/paste/httpserver.py
diff options
context:
space:
mode:
authorRichard Mitchell <richard.j.mitchell@gmail.com>2012-08-02 11:28:01 +0100
committerRichard Mitchell <richard.j.mitchell@gmail.com>2012-08-02 11:28:01 +0100
commitf2f28106d667d77e6546476f48645a60ef6f3074 (patch)
treeedb3733205a229fe41132732f0a4ec74bad8a2ed /paste/httpserver.py
parentcdc59485dc0e8a225347462ac1b11b8b31aa6136 (diff)
downloadpaste-git-double_slash_at_start_of_path_fix.tar.gz
Fixed parsing of URL paths starting with multiple slashes.double_slash_at_start_of_path_fix
Diffstat (limited to 'paste/httpserver.py')
-rwxr-xr-xpaste/httpserver.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/paste/httpserver.py b/paste/httpserver.py
index cd21713..ffc94c3 100755
--- a/paste/httpserver.py
+++ b/paste/httpserver.py
@@ -176,7 +176,8 @@ class WSGIHandlerMixin:
argument can be used to override any settings.
"""
- (scheme, netloc, path, query, fragment) = urlparse.urlsplit(self.path)
+ dummy_url = 'http://dummy%s' % (self.path,)
+ (scheme, netloc, path, query, fragment) = urlparse.urlsplit(dummy_url)
path = urllib.unquote(path)
endslash = path.endswith('/')
path = posixpath.normpath(path)