summaryrefslogtreecommitdiff
path: root/openstackclient/identity/v3/project.py
diff options
context:
space:
mode:
Diffstat (limited to 'openstackclient/identity/v3/project.py')
-rw-r--r--openstackclient/identity/v3/project.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/openstackclient/identity/v3/project.py b/openstackclient/identity/v3/project.py
index 61db8614..a379c6fa 100644
--- a/openstackclient/identity/v3/project.py
+++ b/openstackclient/identity/v3/project.py
@@ -153,7 +153,6 @@ class DeleteProject(command.Command):
project_obj = utils.find_resource(identity_client.projects,
project)
identity_client.projects.delete(project_obj.id)
- return
class ListProject(command.Lister):
@@ -267,8 +266,8 @@ class SetProject(command.Command):
and not parsed_args.property
and not parsed_args.disable):
return
-
- project = common.find_project(identity_client, parsed_args.project,
+ project = common.find_project(identity_client,
+ parsed_args.project,
parsed_args.domain)
kwargs = {}
@@ -284,7 +283,6 @@ class SetProject(command.Command):
kwargs.update(parsed_args.property)
identity_client.projects.update(project.id, **kwargs)
- return
class ShowProject(command.ShowOne):