Skip to content

Commit

Permalink
Merge pull request #21 from usegalaxy-eu/cat-bro-patch-2
Browse files Browse the repository at this point in the history
fix f string of error message when unable to fetch working directory
  • Loading branch information
bgruening authored Jan 16, 2025
2 parents 7e96021 + 16b4c19 commit 131a52c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion files/galaxy_jwd.py
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,9 @@ def decode_path(
):
return jwd_path
else:
raise ValueError("Unabale to fetch Job Working Directory for job with ID {job}")
raise ValueError(
f"Unable to fetch Job Working Directory for job with ID {job_id}"
)


def delete_jwd(jwd_path: str) -> None:
Expand Down

0 comments on commit 131a52c

Please sign in to comment.