diff options
| author | Jenkins <jenkins@review.openstack.org> | 2017-02-14 08:23:21 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2017-02-14 08:23:21 +0000 |
| commit | 3b562ffa904ebb23396c2d6c7398a520cd535238 (patch) | |
| tree | 6626bc8987877c73be2c6a167aac3145f3b3a520 /openstackclient/identity/v3/federation_protocol.py | |
| parent | f106b4f0221931c4b6d1f1e3f16b744407304c6d (diff) | |
| parent | 335c8d3ef3e5d1112a90d2efa267e5f00a2c5357 (diff) | |
| download | python-openstackclient-3b562ffa904ebb23396c2d6c7398a520cd535238.tar.gz | |
Merge "Handle log message interpolation by the logger in identity/"
Diffstat (limited to 'openstackclient/identity/v3/federation_protocol.py')
| -rw-r--r-- | openstackclient/identity/v3/federation_protocol.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openstackclient/identity/v3/federation_protocol.py b/openstackclient/identity/v3/federation_protocol.py index 0752e8f6..6429d934 100644 --- a/openstackclient/identity/v3/federation_protocol.py +++ b/openstackclient/identity/v3/federation_protocol.py @@ -102,8 +102,8 @@ class DeleteProtocol(command.Command): except Exception as e: result += 1 LOG.error(_("Failed to delete federation protocol " - "with name or ID '%(protocol)s': %(e)s") - % {'protocol': i, 'e': e}) + "with name or ID '%(protocol)s': %(e)s"), + {'protocol': i, 'e': e}) if result > 0: total = len(parsed_args.federation_protocol) |
