Skip to content

Commit

Permalink
fix/typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jrapin committed Jan 20, 2025
1 parent 7b17640 commit 4a5b0a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exca/slurm.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ def model_post_init(self, log__: tp.Any) -> None:
if self.tasks_per_node > 1 and not self.slurm_use_srun:
if self.cluster in ["slurm", "auto"]:
msg = "Currently you must set slurm_use_srun=True if tasks_per_node > 1\n"
msg = "(this implies that your job won't be able to run spawn sub-jobs)"
msg += "(this implies that your job won't be able to run spawn sub-jobs)"
raise ValueError(msg)
if self.conda_env is not None:
acceptable = list(SUBMITIT_EXECUTORS)
Expand Down

0 comments on commit 4a5b0a6

Please sign in to comment.