kleinkram 0.0.118__tar.gz → 0.0.120__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of kleinkram might be problematic. Click here for more details.
- {kleinkram-0.0.118 → kleinkram-0.0.120}/PKG-INFO +1 -1
- {kleinkram-0.0.118 → kleinkram-0.0.120}/pyproject.toml +1 -1
- {kleinkram-0.0.118 → kleinkram-0.0.120}/src/kleinkram/main.py +3 -1
- {kleinkram-0.0.118 → kleinkram-0.0.120}/.gitignore +0 -0
- {kleinkram-0.0.118 → kleinkram-0.0.120}/LICENSE +0 -0
- {kleinkram-0.0.118 → kleinkram-0.0.120}/README.md +0 -0
- {kleinkram-0.0.118 → kleinkram-0.0.120}/deploy.sh +0 -0
- {kleinkram-0.0.118 → kleinkram-0.0.120}/dev.sh +0 -0
- {kleinkram-0.0.118 → kleinkram-0.0.120}/requirements.txt +0 -0
- {kleinkram-0.0.118 → kleinkram-0.0.120}/src/kleinkram/__init__.py +0 -0
- {kleinkram-0.0.118 → kleinkram-0.0.120}/src/kleinkram/auth.py +0 -0
- {kleinkram-0.0.118 → kleinkram-0.0.120}/src/kleinkram/consts.py +0 -0
- {kleinkram-0.0.118 → kleinkram-0.0.120}/src/kleinkram/helper.py +0 -0
|
@@ -241,7 +241,9 @@ def create_project(
|
|
|
241
241
|
url = "/project/create"
|
|
242
242
|
response = client.post(url, json={"name": name, "description": description, "requiredTags": []}) # TODO: Add required tags as option
|
|
243
243
|
if response.status_code >= 400:
|
|
244
|
-
|
|
244
|
+
response_json = response.json()
|
|
245
|
+
response_text = response_json["message"]
|
|
246
|
+
print(f"Failed to create project: {response_text}")
|
|
245
247
|
return
|
|
246
248
|
print("Project created")
|
|
247
249
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|