diff options
Diffstat (limited to 'wsgitools/authentication.py')
-rw-r--r-- | wsgitools/authentication.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wsgitools/authentication.py b/wsgitools/authentication.py index 6f5d07b..963dc00 100644 --- a/wsgitools/authentication.py +++ b/wsgitools/authentication.py @@ -64,7 +64,7 @@ class AuthenticationMiddleware: raise AuthenticationRequired( "authorization method not implemented: %r" % method) result = self.authenticate(rest, environ) - except AuthenticationRequired, exc: + except AuthenticationRequired as exc: return self.authorization_required(environ, start_response, exc) assert isinstance(result, dict) assert "user" in result |