Skip to content
Snippets Groups Projects
Commit a69c5b6f authored by Romin's avatar Romin :eye:
Browse files

Fix create_project() responsible field missing

parent d75959c1
Branches
No related tags found
No related merge requests found
......@@ -12,4 +12,4 @@ Coscine Python SDK package metadata
__author__ = "RWTH Aachen University"
__copyright__ = "RWTH Aachen University"
__license__ = "MIT License"
__version__ = "0.11.8"
__version__ = "0.11.9"
......@@ -719,7 +719,9 @@ class ApiClient:
if additional_organizations is None:
additional_organizations = []
for org in additional_organizations:
organizations.append(org.serialize())
data = org.serialize()
data["responsible"] = False
organizations.append(data)
data: dict = {
"name": name,
"displayName": display_name,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment