diff options
Diffstat (limited to 'paste')
| -rw-r--r-- | paste/auth/digest.py | 2 |
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() |
