diff options
| author | Huanxuan Ao <huanxuan.ao@easystack.cn> | 2016-07-13 19:28:11 +0800 |
|---|---|---|
| committer | Huanxuan Ao <huanxuan.ao@easystack.cn> | 2016-07-14 14:12:30 +0800 |
| commit | e5a3c403e5982df8ab6a29d84c45aa2f8f3a10dc (patch) | |
| tree | 2d7193578982da96f0de34625e869b415a472bec /openstackclient/identity/v3/consumer.py | |
| parent | 5a21eb25558c4820bdf1eec3f0d25fca00e7fd24 (diff) | |
| download | python-openstackclient-e5a3c403e5982df8ab6a29d84c45aa2f8f3a10dc.tar.gz | |
Make set/unset commands pass normally when nothing specified in identityv3
Change-Id: I554b41969f96b62a2c6d37024caa56b1441d5ed1
Partial-bug: #1588588
Diffstat (limited to 'openstackclient/identity/v3/consumer.py')
| -rw-r--r-- | openstackclient/identity/v3/consumer.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/openstackclient/identity/v3/consumer.py b/openstackclient/identity/v3/consumer.py index a4620bf9..65bf657f 100644 --- a/openstackclient/identity/v3/consumer.py +++ b/openstackclient/identity/v3/consumer.py @@ -15,8 +15,6 @@ """Identity v3 Consumer action implementations""" -import sys - from osc_lib.command import command from osc_lib import utils import six @@ -102,10 +100,6 @@ class SetConsumer(command.Command): if parsed_args.description: kwargs['description'] = parsed_args.description - if not len(kwargs): - sys.stdout.write(_('Consumer not updated, no arguments present\n')) - return - consumer = identity_client.oauth1.consumers.update( consumer.id, **kwargs) |
