summaryrefslogtreecommitdiff
path: root/doc/source/command-errors.rst
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2016-06-14 07:26:58 +0000
committerGerrit Code Review <review@openstack.org>2016-06-14 07:26:58 +0000
commit5b36898b2b9777cb1d343834347429996d1bf984 (patch)
tree54d063580ec6bba9d571b86d905dde31b0e71f5d /doc/source/command-errors.rst
parent2c92b60f457a16c315b6286592e9fee534bd4b3d (diff)
parent8c7e34d65ca6217eee54389fcd40554a8cb454e6 (diff)
downloadpython-openstackclient-5b36898b2b9777cb1d343834347429996d1bf984.tar.gz
Merge "Fix image delete multiple arguments error"
Diffstat (limited to 'doc/source/command-errors.rst')
-rw-r--r--doc/source/command-errors.rst7
1 files changed, 2 insertions, 5 deletions
diff --git a/doc/source/command-errors.rst b/doc/source/command-errors.rst
index 48b828fd..c4adb7d1 100644
--- a/doc/source/command-errors.rst
+++ b/doc/source/command-errors.rst
@@ -197,9 +197,6 @@ multiple ``delete_network()`` calls.
if ret > 0:
total = len(parsed_args.network)
- msg = _("Failed to delete %(ret)s of %(total)s networks.") %
- {
- "ret": ret,
- "total": total,
- }
+ msg = (_("Failed to delete %(ret)s of %(total)s networks.")
+ % {"ret": ret, "total": total})
raise exceptions.CommandError(msg)