diff options
| author | Dolph Mathews <dolph.mathews@rackspace.com> | 2011-07-11 11:50:10 -0500 |
|---|---|---|
| committer | Dolph Mathews <dolph.mathews@rackspace.com> | 2011-07-11 11:50:10 -0500 |
| commit | 1eb8f0c5d8c49a0341435bb86278d176ff56eacc (patch) | |
| tree | 78ba5efe7e1143b41ecb577f2ba78b347ea70a86 | |
| parent | c0570817f1e9658d748aef30edaa4105a6096294 (diff) | |
Removed unused import
| -rwxr-xr-x | keystone/auth_protocols/auth_token.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/keystone/auth_protocols/auth_token.py b/keystone/auth_protocols/auth_token.py index 188cfa6c..1e8c0d27 100755 --- a/keystone/auth_protocols/auth_token.py +++ b/keystone/auth_protocols/auth_token.py @@ -58,7 +58,7 @@ import json import os from paste.deploy import loadapp from urlparse import urlparse -from webob.exc import HTTPUnauthorized, HTTPUseProxy, HTTPExpectationFailed +from webob.exc import HTTPUnauthorized, HTTPUseProxy from webob.exc import Request, Response from keystone.common.bufferedhttp import http_connect_raw as http_connect @@ -162,7 +162,7 @@ class AuthProtocol(object): if claims: # TODO(Ziad): add additional details we may need, # like tenant and group info - self._decorate_request('X_AUTHORIZATION', "Proxy %s" % + self._decorate_request('X_AUTHORIZATION', "Proxy %s" % claims['user']) self._decorate_request('X_TENANT', claims['tenant']) self._decorate_request('X_USER', claims['user']) |
