kleinkram 0.0.119__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.119 → kleinkram-0.0.120}/PKG-INFO +1 -1
- {kleinkram-0.0.119 → kleinkram-0.0.120}/pyproject.toml +1 -1
- {kleinkram-0.0.119 → kleinkram-0.0.120}/src/kleinkram/main.py +2 -1
- {kleinkram-0.0.119 → kleinkram-0.0.120}/.gitignore +0 -0
- {kleinkram-0.0.119 → kleinkram-0.0.120}/LICENSE +0 -0
- {kleinkram-0.0.119 → kleinkram-0.0.120}/README.md +0 -0
- {kleinkram-0.0.119 → kleinkram-0.0.120}/deploy.sh +0 -0
- {kleinkram-0.0.119 → kleinkram-0.0.120}/dev.sh +0 -0
- {kleinkram-0.0.119 → kleinkram-0.0.120}/requirements.txt +0 -0
- {kleinkram-0.0.119 → kleinkram-0.0.120}/src/kleinkram/__init__.py +0 -0
- {kleinkram-0.0.119 → kleinkram-0.0.120}/src/kleinkram/auth.py +0 -0
- {kleinkram-0.0.119 → kleinkram-0.0.120}/src/kleinkram/consts.py +0 -0
- {kleinkram-0.0.119 → kleinkram-0.0.120}/src/kleinkram/helper.py +0 -0
|
@@ -242,7 +242,8 @@ def create_project(
|
|
|
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
|
-
|
|
245
|
+
response_text = response_json["message"]
|
|
246
|
+
print(f"Failed to create project: {response_text}")
|
|
246
247
|
return
|
|
247
248
|
print("Project created")
|
|
248
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
|