diff options
| author | Jenkins <jenkins@review.openstack.org> | 2014-06-10 02:27:54 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2014-06-10 02:27:54 +0000 |
| commit | 3b925e9806cb942c6333d4038ebdad65cd9390df (patch) | |
| tree | c45cfc24199950628d61952ed9d24d641707b3e9 /openstackclient/compute/client.py | |
| parent | fb656527530444c116dce493abd85cc69e8902fb (diff) | |
| parent | 3b485de6b0495d1e9f6d659463a187d73a783594 (diff) | |
| download | python-openstackclient-3b925e9806cb942c6333d4038ebdad65cd9390df.tar.gz | |
Merge "replace string format arguments with function parameters"
Diffstat (limited to 'openstackclient/compute/client.py')
| -rw-r--r-- | openstackclient/compute/client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openstackclient/compute/client.py b/openstackclient/compute/client.py index 765a48db..3dacee88 100644 --- a/openstackclient/compute/client.py +++ b/openstackclient/compute/client.py @@ -34,7 +34,7 @@ def make_client(instance): API_NAME, instance._api_version[API_NAME], API_VERSIONS) - LOG.debug('instantiating compute client: %s' % compute_client) + LOG.debug('instantiating compute client: %s', compute_client) # Set client http_log_debug to True if verbosity level is high enough http_log_debug = utils.get_effective_log_level() <= logging.DEBUG |
