summaryrefslogtreecommitdiff
path: root/paste/auth
diff options
context:
space:
mode:
authorTaavi Burns <taavi@freshbooks.com>2010-09-09 18:12:39 -0400
committerTaavi Burns <taavi@freshbooks.com>2010-09-09 18:12:39 -0400
commitf47b88b10ff354e1df8692f45c0941377691f549 (patch)
tree75f5711d142da6fcb0081f4d31d24c202771cb85 /paste/auth
parentaf397c05eae45dfcc230a8d086a192af99cb6ae9 (diff)
downloadpaste-f47b88b10ff354e1df8692f45c0941377691f549.tar.gz
Fix test broken by 27a36b3e1843 (for http://trac.pythonpaste.org/pythonpaste/ticket/328)
Diffstat (limited to 'paste/auth')
-rw-r--r--paste/auth/digest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/paste/auth/digest.py b/paste/auth/digest.py
index e5c81a3..1b5ba84 100644
--- a/paste/auth/digest.py
+++ b/paste/auth/digest.py
@@ -91,7 +91,7 @@ class AuthDigestAuthenticator(object):
the request returning authenticated user or error.
"""
method = REQUEST_METHOD(environ)
- fullpath = urllib.quote(SCRIPT_NAME(environ)) + urllib.quote(PATH_INFO(environ))
+ fullpath = url_quote(SCRIPT_NAME(environ)) + url_quote(PATH_INFO(environ))
authorization = AUTHORIZATION(environ)
if not authorization:
return self.build_authentication()