Skip to content

Commit b9fec1d

Browse files
committed
Fix unrelated, obscure bug in logging
1 parent 0246895 commit b9fec1d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

snakemake_executor_plugin_cluster_generic/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ def job_status(
223223
"workflow execution, "
224224
"have a closer look.).".format(
225225
self.workflow.executor_settings.status_cmd,
226-
",".join(self.status_cmd_kills),
226+
",".join(map(str, self.status_cmd_kills)),
227227
)
228228
)
229229
self.status_cmd_kills.clear()

0 commit comments

Comments
 (0)