Fix missing print format error

Missing print format will cause 'ValueError: unsupported
format character' error, this is to fix it.

Change-Id: I1a18a6357056a3a7bfa729b9fccb288437564937
This commit is contained in:
zhufl 2018-07-20 16:29:53 +08:00
parent 50f40854b0
commit 7b8dd39985
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ class ConnectorClient(object):
if _url.scheme == 'https':
_ssl_enabled = True
elif ca_file:
LOG.warning("url is %(url) which is not https "
LOG.warning("url is %(url)s which is not https "
"but ca_file is configured to %(ca_file)s",
{'url': zcc_url, 'ca_file': ca_file})