Skip to content

Commit 1109732

Browse files
authored
Merge pull request #564 from ghisvail/patch-1
Improve reporting of crash report location
2 parents 42f7894 + 817bf99 commit 1109732

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pydra/engine/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1231,7 +1231,7 @@ def _collect_outputs(self):
12311231
err_file = getattr(self, val.name).output_dir / "_error.pklz"
12321232
raise ValueError(
12331233
f"Task {val.name} raised an error, full crash report is here: "
1234-
f"{err_file}"
1234+
f"{str(err_file)}"
12351235
)
12361236
return attr.evolve(output, **output_wf)
12371237

0 commit comments

Comments
 (0)