Skip to content

Commit 9310aa6

Browse files
committed
fixes bug in _list_blocked_tasks
1 parent b5fe4c0 commit 9310aa6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pydra/engine/submitter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ def _list_blocked_tasks(graph):
307307
matching_name.append(
308308
f"{saved_tsk.name} ({tsk_work_dir.name})"
309309
)
310-
blocking.append(pred, ", ".join(matching_name))
310+
blocking.append((pred, ", ".join(matching_name)))
311311
if blocking:
312312
blocked.append(
313313
f"\n{tsk.name} ({tsk.checksum}) is blocked by "

0 commit comments

Comments
 (0)