diff options
| author | Cyril Roelandt <cyril@redhat.com> | 2021-10-26 15:53:35 +0200 |
|---|---|---|
| committer | Cyril Roelandt <cyril@redhat.com> | 2021-10-26 15:53:51 +0200 |
| commit | 43639e1118a757fd1a00d9ea999db43133c40763 (patch) | |
| tree | 9db5316ea49bf29a3a5972dd26db6cb271b2854c /openstackclient/common | |
| parent | 728401bbd76afc4d31b4f22e44bf98d1de40ef46 (diff) | |
| download | python-openstackclient-43639e1118a757fd1a00d9ea999db43133c40763.tar.gz | |
Fix typos
Change-Id: Idd502c8df21da79ff3b9339870f38378f5337879
Diffstat (limited to 'openstackclient/common')
| -rw-r--r-- | openstackclient/common/progressbar.py | 2 | ||||
| -rw-r--r-- | openstackclient/common/quota.py | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/openstackclient/common/progressbar.py b/openstackclient/common/progressbar.py index ef767a9c..7678aceb 100644 --- a/openstackclient/common/progressbar.py +++ b/openstackclient/common/progressbar.py @@ -17,7 +17,7 @@ import sys class _ProgressBarBase(object): - """A progress bar provider for a wrapped obect. + """A progress bar provider for a wrapped object. Base abstract class used by specific class wrapper to show a progress bar when the wrapped object are consumed. diff --git a/openstackclient/common/quota.py b/openstackclient/common/quota.py index 643cb4e4..00bbc514 100644 --- a/openstackclient/common/quota.py +++ b/openstackclient/common/quota.py @@ -205,7 +205,7 @@ class BaseQuota(object): class ListQuota(command.Lister, BaseQuota): _description = _( "List quotas for all projects with non-default quota values or " - "list detailed quota informations for requested project") + "list detailed quota information for requested project") def _get_detailed_quotas(self, parsed_args): columns = ( @@ -230,7 +230,7 @@ class ListQuota(command.Lister, BaseQuota): result = [] for resource, values in quotas.items(): # NOTE(slaweq): there is no detailed quotas info for some resources - # and it should't be displayed here + # and it shouldn't be displayed here if type(values) is dict: result.append({ 'resource': resource, |
