summaryrefslogtreecommitdiff
path: root/openstackclient/identity/v3/project.py
diff options
context:
space:
mode:
authorHuanxuan Ao <huanxuan.ao@easystack.cn>2016-07-13 19:28:11 +0800
committerHuanxuan Ao <huanxuan.ao@easystack.cn>2016-07-14 14:12:30 +0800
commite5a3c403e5982df8ab6a29d84c45aa2f8f3a10dc (patch)
tree2d7193578982da96f0de34625e869b415a472bec /openstackclient/identity/v3/project.py
parent5a21eb25558c4820bdf1eec3f0d25fca00e7fd24 (diff)
downloadpython-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/project.py')
-rwxr-xr-xopenstackclient/identity/v3/project.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/openstackclient/identity/v3/project.py b/openstackclient/identity/v3/project.py
index 53987017..56c4fbc8 100755
--- a/openstackclient/identity/v3/project.py
+++ b/openstackclient/identity/v3/project.py
@@ -263,13 +263,6 @@ class SetProject(command.Command):
def take_action(self, parsed_args):
identity_client = self.app.client_manager.identity
- if (not parsed_args.name
- and not parsed_args.domain
- and not parsed_args.description
- and not parsed_args.enable
- and not parsed_args.property
- and not parsed_args.disable):
- return
project = common.find_project(identity_client,
parsed_args.project,
parsed_args.domain)