Remove unused TOKEN_CHARS_RE

TOKEN_CHARS_RE is not used in rest_client.py, and this patch
removes it.

Change-Id: I33db1b937efc6393d979da6c3f6b55cf31b5779c
This commit is contained in:
Ken'ichi Ohmichi 2014-12-10 05:26:28 +00:00
parent fc7d4ff1fe
commit 5f93d37ed1

@ -33,7 +33,6 @@ CONF = config.CONF
# redrive rate limited calls at most twice
MAX_RECURSION_DEPTH = 2
TOKEN_CHARS_RE = re.compile('^[-A-Za-z0-9+/=]*$')
# All the successful HTTP status codes from RFC 7231 & 4918
HTTP_SUCCESS = (200, 201, 202, 203, 204, 205, 206, 207)