summaryrefslogtreecommitdiff
path: root/paste/urlparser.py
diff options
context:
space:
mode:
authorianb <devnull@localhost>2005-12-15 00:52:20 +0000
committerianb <devnull@localhost>2005-12-15 00:52:20 +0000
commit74a58aabb3f295e56dff9474310074b7a6d371ef (patch)
tree68c83ff6f68529eb13dc17a1729067cd00b90f1e /paste/urlparser.py
parentd461c3e28d82e4830647bd5b3f6118c543d65dd6 (diff)
downloadpaste-74a58aabb3f295e56dff9474310074b7a6d371ef.tar.gz
Moved a function to request that shouldn't be
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 4f8c950..a72124a 100644
--- a/paste/urlparser.py
+++ b/paste/urlparser.py
@@ -430,7 +430,7 @@ class StaticURLParser(object):
return self.__class__(full)(environ, start_response)
if environ.get('PATH_INFO') and environ.get('PATH_INFO') != '/':
return self.error_extra_path(environ, start_response)
- return request.send_file(full)(environ, start_response)
+ return wsgilib.send_file(full)(environ, start_response)
def add_slash(self, environ, start_response):
"""