Skip to content

Commit

Permalink
fix: bugfix of faulty string concatenation (#11)
Browse files Browse the repository at this point in the history
Fixes issue:
#9
  • Loading branch information
jonca79 authored Sep 7, 2024
1 parent 9193590 commit 622d1a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions snakemake_executor_plugin_drmaa/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@ def run_job(self, job: JobExecutorInterface):
jt.remoteCommand = jobscript
jt.nativeSpecification = drmaa_args
if self.drmaa_log_dir:
jt.outputPath = ":" + self.drmaa_log_dir
jt.errorPath = ":" + self.drmaa_log_dir
jt.outputPath = f":{self.drmaa_log_dir}"
jt.errorPath = f":{self.drmaa_log_dir}"
jt.jobName = os.path.basename(jobscript)

job_info.external_jobid = self.session.runJob(jt)
Expand Down

0 comments on commit 622d1a8

Please sign in to comment.