summaryrefslogtreecommitdiff
path: root/cinderclient/shell.py
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2017-05-25 18:43:57 +0000
committerGerrit Code Review <review@openstack.org>2017-05-25 18:43:57 +0000
commit48ac0b9d140487630b0fd4675a6e3d6e5c9b83fb (patch)
tree9a53586f0a3a8d9dc968753f3c2e1cb7a6e4ef02 /cinderclient/shell.py
parent07565abf3e8901ba499d418b5484c16a077dfb2a (diff)
parent0c3a6445dfa53b911cfac7b9f9e2f23a8f61d3b5 (diff)
downloadpython-cinderclient-48ac0b9d140487630b0fd4675a6e3d6e5c9b83fb.tar.gz
Merge "Add a missing left bracket in help message"
Diffstat (limited to 'cinderclient/shell.py')
-rw-r--r--cinderclient/shell.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cinderclient/shell.py b/cinderclient/shell.py
index f1a4c7b..6307fdb 100644
--- a/cinderclient/shell.py
+++ b/cinderclient/shell.py
@@ -459,7 +459,7 @@ class OpenStackCinderShell(object):
msg = (_(" (Supported by API version %(start)s and later)")
% {"start": start_version.get_string()})
else:
- msg = (_(" Supported until API version %(end)s)")
+ msg = (_(" (Supported until API version %(end)s)")
% {"end": end_version.get_string()})
return six.text_type(msg)