From 54b0ef3358b25b0c164ee5f4eba07ee474513d3a Mon Sep 17 00:00:00 2001 From: Xi Yang Date: Sun, 8 Nov 2015 22:05:15 +0800 Subject: Use Block Storage instead of Volume Volume is better to be replaced by Block Storage in the doc. Change-Id: I736669ee01c7385b6e701cb20f4334eff1c49286 --- openstackclient/common/extension.py | 4 ++-- openstackclient/common/limits.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'openstackclient/common') diff --git a/openstackclient/common/extension.py b/openstackclient/common/extension.py index dad7ed62..4bca4ba1 100644 --- a/openstackclient/common/extension.py +++ b/openstackclient/common/extension.py @@ -49,7 +49,7 @@ class ListExtension(lister.Lister): '--volume', action='store_true', default=False, - help='List extensions for the Volume API') + help='List extensions for the Block Storage API') parser.add_argument( '--long', action='store_true', @@ -95,7 +95,7 @@ class ListExtension(lister.Lister): try: data += volume_client.list_extensions.show_all() except Exception: - message = "Extensions list not supported by Volume API" + message = "Extensions list not supported by Block Storage API" self.log.warning(message) # Resource classes for the above diff --git a/openstackclient/common/limits.py b/openstackclient/common/limits.py index 582f70c5..57703670 100644 --- a/openstackclient/common/limits.py +++ b/openstackclient/common/limits.py @@ -25,7 +25,7 @@ from openstackclient.identity import common as identity_common class ShowLimits(lister.Lister): - """Show compute and volume limits""" + """Show compute and block storage limits""" log = logging.getLogger(__name__ + '.ShowLimits') -- cgit v1.2.1