Commit de032da6 authored by Shane Hathaway's avatar Shane Hathaway

Corrected an indentation error that lead to a NameError.

parent bf8280a1
...@@ -83,7 +83,7 @@ ...@@ -83,7 +83,7 @@
# #
############################################################################## ##############################################################################
__version__='$Revision: 1.42 $'[11:-2] __version__='$Revision: 1.43 $'[11:-2]
import regex, re, sys, os, string, urllib import regex, re, sys, os, string, urllib
from string import lower, atoi, rfind, split, strip, join, upper, find from string import lower, atoi, rfind, split, strip, join, upper, find
...@@ -799,9 +799,9 @@ class HTTPRequest(BaseRequest): ...@@ -799,9 +799,9 @@ class HTTPRequest(BaseRequest):
path = [''] + path[:n] path = [''] + path[:n]
else: else:
path = [other['SERVER_URL']] + path[:n] path = [other['SERVER_URL']] + path[:n]
other[key] = URL = join(path, '/') other[key] = URL = join(path, '/')
self._urls = self._urls + (key,) self._urls = self._urls + (key,)
return URL return URL
if isCGI_NAME(key) or key[:5] == 'HTTP_': if isCGI_NAME(key) or key[:5] == 'HTTP_':
environ=self.environ environ=self.environ
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment