diff options
| author | Jenkins <jenkins@review.openstack.org> | 2016-01-04 16:23:29 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2016-01-04 16:23:30 +0000 |
| commit | 5aeb83115721a7a03acdb0bcbb14cf9e48ca4c53 (patch) | |
| tree | ce79fc503c0881b89da5f6841d6cf1765fe192f2 /openstackclient/common | |
| parent | 74a0b2a1901f8ba31ce9faee7ab18a48c6e558f9 (diff) | |
| parent | 54b0ef3358b25b0c164ee5f4eba07ee474513d3a (diff) | |
| download | python-openstackclient-5aeb83115721a7a03acdb0bcbb14cf9e48ca4c53.tar.gz | |
Merge "Use Block Storage instead of Volume"
Diffstat (limited to 'openstackclient/common')
| -rw-r--r-- | openstackclient/common/extension.py | 4 | ||||
| -rw-r--r-- | openstackclient/common/limits.py | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/openstackclient/common/extension.py b/openstackclient/common/extension.py index 8825b491..d1ae208d 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') |
