diff options
| author | Michael Still <mikal@stillhq.com> | 2012-01-08 18:35:12 +1100 |
|---|---|---|
| committer | Michael Still <mikal@stillhq.com> | 2012-01-08 18:56:07 +1100 |
| commit | ee617f4b176c33e30b740481d18bbca992cfb557 (patch) | |
| tree | 14a549e69772fa0823dd2c51ce0e17ac5f32c7c7 | |
| parent | 73525ac00d7d7d6e55ef59ba2fbd2d1dffa7b89e (diff) | |
| download | keystone-ee617f4b176c33e30b740481d18bbca992cfb557.tar.gz keystone-ee617f4b176c33e30b740481d18bbca992cfb557.tar.xz keystone-ee617f4b176c33e30b740481d18bbca992cfb557.zip | |
Fix minor typo
Change-Id: I17c8be42a785f110ad16031c9715290b8e16d8c8
| -rw-r--r-- | keystone/middleware/auth_token.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/keystone/middleware/auth_token.py b/keystone/middleware/auth_token.py index 1fe701e5..1cc45898 100644 --- a/keystone/middleware/auth_token.py +++ b/keystone/middleware/auth_token.py @@ -401,7 +401,7 @@ class AuthProtocol(object): def _reject_request(self, env, start_response): """Redirect client to auth server""" - logger.debug("Rejecting request - authoentication required") + logger.debug("Rejecting request - authentication required") return HTTPUnauthorized("Authentication required", [("WWW-Authenticate", "Keystone uri='%s'" % self.auth_location)])(env, |
