diff options
| author | Zuul <zuul@review.openstack.org> | 2017-11-28 21:35:55 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2017-11-28 21:35:55 +0000 |
| commit | 878410db8d7586d375afd144a2fb2d4e9c6a8822 (patch) | |
| tree | 6b96a66d08e600528157a785e6023541f8a03c4f /openstackclient | |
| parent | 5176951d592582881be829ffe1bc0ebb49837fdf (diff) | |
| parent | 7ef2867ff61d6e4d468b80a9284fdb0bd5bdb6c9 (diff) | |
| download | python-openstackclient-878410db8d7586d375afd144a2fb2d4e9c6a8822.tar.gz | |
Merge "Replace %r with %s on printing string variable"
Diffstat (limited to 'openstackclient')
| -rw-r--r-- | openstackclient/common/clientmanager.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openstackclient/common/clientmanager.py b/openstackclient/common/clientmanager.py index 7b2c8a5c..89781052 100644 --- a/openstackclient/common/clientmanager.py +++ b/openstackclient/common/clientmanager.py @@ -132,13 +132,13 @@ def get_plugin_modules(group): """Find plugin entry points""" mod_list = [] for ep in pkg_resources.iter_entry_points(group): - LOG.debug('Found plugin %r', ep.name) + LOG.debug('Found plugin %s', ep.name) try: __import__(ep.module_name) except Exception: sys.stderr.write( - "WARNING: Failed to import plugin %r.\n" % ep.name) + "WARNING: Failed to import plugin %s.\n" % ep.name) continue module = sys.modules[ep.module_name] |
