diff options
Diffstat (limited to 'wsgitools/authentication.py')
-rw-r--r-- | wsgitools/authentication.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wsgitools/authentication.py b/wsgitools/authentication.py index 0c69f95..6f5d07b 100644 --- a/wsgitools/authentication.py +++ b/wsgitools/authentication.py @@ -82,7 +82,7 @@ class AuthenticationMiddleware: """Generates a WWW-Authenticate header. Subclasses must implement this method. - @type exception: AuthenticationRequired + @type exception: L{AuthenticationRequired} @param exception: reason for generating the header @rtype: (str, str) @returns: the header as (part_before_colon, part_after_colon) @@ -93,7 +93,7 @@ class AuthenticationMiddleware: """Generate an error page after failed authentication. Apart from the exception parameter, this method behaves like a WSGI application. - @type exception: AuthenticationRequired + @type exception: L{AuthenticationRequired} @param exception: reason for the authentication failure """ status = "401 Authorization required" |