diff options
author | Benjamin Peterson <benjamin@python.org> | 2013-10-30 16:43:09 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2013-10-30 16:43:09 (GMT) |
commit | 04e9de40f380b2695f955d68f2721d57cecbf858 (patch) | |
tree | 24b72df52cccd33d948e41f08642e9aea80ab51e /Lib/http | |
parent | 505be2146fcee88b71899136a808173f588f9628 (diff) | |
download | cpython-04e9de40f380b2695f955d68f2721d57cecbf858.zip cpython-04e9de40f380b2695f955d68f2721d57cecbf858.tar.gz cpython-04e9de40f380b2695f955d68f2721d57cecbf858.tar.bz2 |
use the collapsed path in the run_cgi method (closes #19435)
Diffstat (limited to 'Lib/http')
-rw-r--r-- | Lib/http/server.py | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/Lib/http/server.py b/Lib/http/server.py index fccdc4c..97217f2 100644 --- a/Lib/http/server.py +++ b/Lib/http/server.py @@ -926,18 +926,17 @@ class CGIHTTPRequestHandler(SimpleHTTPRequestHandler): def run_cgi(self): """Execute a CGI script.""" - path = self.path dir, rest = self.cgi_info - i = path.find('/', len(dir) + 1) + i = rest.find('/') while i >= 0: - nextdir = path[:i] - nextrest = path[i+1:] + nextdir = rest[:i] + nextrest = rest[i+1:] scriptdir = self.translate_path(nextdir) if os.path.isdir(scriptdir): dir, rest = nextdir, nextrest - i = path.find('/', len(dir) + 1) + i = rest.find('/') else: break |