Skip to content

Commit

Permalink
Merge pull request #6 from valohai/lower-project-name
Browse files Browse the repository at this point in the history
Make sure dataset version is all lowercase
  • Loading branch information
ruksi authored Aug 26, 2024
2 parents c610361 + 828e2fa commit 6436622
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ def get_run_identification():
try:
with open("/valohai/config/execution.json") as f:
exec_details = json.load(f)
project_name = exec_details["valohai.project-name"].split("/")[1]
project_name = exec_details["valohai.project-name"].split("/")[1].lower()
exec_id = exec_details["valohai.execution-id"]
except FileNotFoundError:
project_name = "test"
Expand Down

0 comments on commit 6436622

Please sign in to comment.