Merge "Use percent sign as string formatting operator"

This commit is contained in:
Jenkins 2015-07-02 06:52:28 +00:00 committed by Gerrit Code Review
commit da7e583e4b
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ class ClientBackend(object):
context)
except (ImportError, RuntimeError) as err:
msg = _('Invalid cloud_backend setting in heat.conf '
'detected - %s'), six.text_type(err)
'detected - %s') % six.text_type(err)
LOG.error(msg)
raise exception.Invalid(reason=msg)