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.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: kleinkram
3
- Version: 0.0.119
3
+ Version: 0.0.120
4
4
  Summary: A CLI for the ETH project kleinkram
5
5
  Project-URL: Homepage, https://github.com/leggedrobotics/kleinkram
6
6
  Project-URL: Issues, https://github.com/leggedrobotics/kleinkram/issues
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "kleinkram"
7
- version = "0.0.119"
7
+ version = "0.0.120"
8
8
  authors = [
9
9
  { name="Johann Schwabe", email="jschwab@ethz.ch" },
10
10
  ]
@@ -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
- print(f"Failed to create project: {response_json["message"]}")
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