Skip to content

Commit 6d2e6ff

Browse files
committed
fixed task def call error message
1 parent 66bcfaa commit 6d2e6ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pydra/engine/specs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ def __call__(
303303
raise RuntimeError(
304304
f"Task {self} failed @ {time_of_crash} with the "
305305
"following errors:\n"
306-
+ "\n".join(error_message)
306+
+ error_message
307307
+ (
308308
"To inspect, please load the pickled task object from here: "
309309
f"{result.output_dir}/_task.pklz"

0 commit comments

Comments
 (0)