diff options
| author | Tang Chen <chen.tang@easystack.cn> | 2016-03-23 16:04:21 +0800 |
|---|---|---|
| committer | Tang Chen <chen.tang@easystack.cn> | 2016-03-23 16:04:21 +0800 |
| commit | 3e0e1f8c4198d8d85cb88dbc29f6717659b1dccc (patch) | |
| tree | 600e9b4d9fac08b3fa81eadd28770ded632c7c54 | |
| parent | 41853985bb654e8417e5c9850ed1eeccd9828a73 (diff) | |
| download | python-openstackclient-3e0e1f8c4198d8d85cb88dbc29f6717659b1dccc.tar.gz | |
Trivial: Fix typo in common/limits.py
Change-Id: I3040cc69512df50459960f96b862de55804068ac
| -rw-r--r-- | doc/source/command-objects/limits.rst | 2 | ||||
| -rw-r--r-- | openstackclient/common/limits.py | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/doc/source/command-objects/limits.rst b/doc/source/command-objects/limits.rst index 6a7509f2..87a5b33c 100644 --- a/doc/source/command-objects/limits.rst +++ b/doc/source/command-objects/limits.rst @@ -37,4 +37,4 @@ Show compute and block storage limits .. option:: --domain <domain> - Domain that owns --project (name or ID) [only valid with --absolute] + Domain the project belongs to (name or ID) [only valid with --absolute] diff --git a/openstackclient/common/limits.py b/openstackclient/common/limits.py index bd546c01..1f87abf3 100644 --- a/openstackclient/common/limits.py +++ b/openstackclient/common/limits.py @@ -55,8 +55,8 @@ class ShowLimits(command.Lister): parser.add_argument( '--domain', metavar='<domain>', - help='Domain that owns --project (name or ID)' - ' [only valid with --absolute]', + help='Domain the project belongs to (name or ID)' + ' [only valid with --absolute]', ) return parser |
