summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKIYOHIRO ADACHI <adachi@mxs.nes.nec.co.jp>2014-02-28 12:02:49 +0900
committerKIYOHIRO ADACHI <adachi@mxs.nes.nec.co.jp>2014-02-28 13:09:23 +0900
commitae3737142ca8beb4612581d75ca7c5f5f234c9a2 (patch)
treecedebc93620c79fa3b6fe4b84a7ddd3515736a72
parente2ce639517bda60253d539b4d8bf7da6bd6bc914 (diff)
downloadkeystone-ae3737142ca8beb4612581d75ca7c5f5f234c9a2.tar.gz
Remove unused variable
o keystone/common/wsgi.py:_RE_PASS = re.compile(r'([\'"].*?password[\'"]\s*:\s*u?[\'"]).*?([\'"])', This variable was removed in the following commit. commit d910f1ff593dbd66f5643901142f390d0de73bdc Author: Brant Knudson <bknudson@us.ibm.com> Date: Mon Dec 16 19:49:52 2013 -0600 Switch to oslo-incubator mask_password Change-Id: I6236bdb34cfcddcb338bb066450f4e89c5447e24
-rw-r--r--keystone/common/wsgi.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/keystone/common/wsgi.py b/keystone/common/wsgi.py
index 1369bb521..2ac259ea4 100644
--- a/keystone/common/wsgi.py
+++ b/keystone/common/wsgi.py
@@ -18,8 +18,6 @@
"""Utility methods for working with WSGI servers."""
-import re
-
import routes.middleware
import six
import webob.dec
@@ -46,10 +44,6 @@ CONTEXT_ENV = 'openstack.context'
PARAMS_ENV = 'openstack.params'
-_RE_PASS = re.compile(r'([\'"].*?password[\'"]\s*:\s*u?[\'"]).*?([\'"])',
- re.DOTALL)
-
-
def validate_token_bind(context, token_ref):
bind_mode = CONF.token.enforce_token_bind