From e064b8e1b95c1086b58b6f5709075ff704401b3c Mon Sep 17 00:00:00 2001 From: Benjamin Lieser Date: Fri, 14 Feb 2025 16:24:31 +0100 Subject: [PATCH] Fix missing quotes for the slurm comment --- snakemake_executor_plugin_slurm/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snakemake_executor_plugin_slurm/__init__.py b/snakemake_executor_plugin_slurm/__init__.py index ef12e901..e17d72b0 100644 --- a/snakemake_executor_plugin_slurm/__init__.py +++ b/snakemake_executor_plugin_slurm/__init__.py @@ -208,7 +208,7 @@ def run_job(self, job: JobExecutorInterface): f"--job-name {self.run_uuid} " f"--output '{slurm_logfile}' " f"--export=ALL " - f"--comment {comment_str}" + f"--comment '{comment_str}'" ) call += self.get_account_arg(job)