summaryrefslogtreecommitdiff
path: root/paste/urlparser.py
diff options
context:
space:
mode:
authorianb <devnull@localhost>2008-04-18 22:34:46 +0000
committerianb <devnull@localhost>2008-04-18 22:34:46 +0000
commitfc3d6765adb8c7af7a4e06a14a90333db439cbae (patch)
tree24b04c187cb0ac25cea4283e276f43b7c1126657 /paste/urlparser.py
parent35876f52585996786000c8317ae93b581af3c7a9 (diff)
downloadpaste-fc3d6765adb8c7af7a4e06a14a90333db439cbae.tar.gz
typo in last commit
Diffstat (limited to 'paste/urlparser.py')
-rw-r--r--paste/urlparser.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/paste/urlparser.py b/paste/urlparser.py
index d508b77..530e9c4 100644
--- a/paste/urlparser.py
+++ b/paste/urlparser.py
@@ -455,7 +455,7 @@ class StaticURLParser(object):
else:
filename = request.path_info_pop(environ)
full = os.path.normcase(os.path.normpath(
- os.path.join(self.directory, filename))))
+ os.path.join(self.directory, filename)))
if os.path.sep != '/':
full = full.replace('/', os.path.sep)
if self.root_directory is not None and not full.startswith(self.root_directory):