summaryrefslogtreecommitdiffstats
path: root/keystone/middleware
diff options
context:
space:
mode:
authorChmouel Boudjnah <chmouel@chmouel.com>2012-05-24 16:14:35 +0200
committerChmouel Boudjnah <chmouel@chmouel.com>2012-05-24 16:21:09 +0200
commitbb2fbb703092b8c788ae4da718f32fcf86f1f9eb (patch)
tree9a261a6300f8b6dfb3c0c2476bcdd9d622789a53 /keystone/middleware
parent33d107aa1d3e1aa2c188f9df7338a1e7d97a4ed2 (diff)
Fixes some pep8 warning/errors.
- Using flake8 so a bit more than that. Change-Id: I63fa21f7d3d02f96c0c56804fdd56da37c952d7d
Diffstat (limited to 'keystone/middleware')
-rw-r--r--keystone/middleware/auth_token.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/keystone/middleware/auth_token.py b/keystone/middleware/auth_token.py
index 92c889d5..869c147d 100644
--- a/keystone/middleware/auth_token.py
+++ b/keystone/middleware/auth_token.py
@@ -444,7 +444,7 @@ class AuthProtocol(object):
:return wsgi env variable name (ex. 'HTTP_X_AUTH_TOKEN')
"""
- return 'HTTP_%s' % key.replace('-', '_').upper()
+ return 'HTTP_%s' % key.replace('-', '_').upper()
def _add_headers(self, env, headers):
"""Add http headers to environment."""