Skip to content

Commit

Permalink
fix jobs list by id for pbs
Browse files Browse the repository at this point in the history
  • Loading branch information
gpetretto committed Jan 3, 2025
1 parent 750849f commit 982473b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qtoolkit/io/pbs_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def _get_jobs_list_cmd(
command.append(f"-u {user}")

if job_ids:
job_ids_str = ",".join(job_ids)
job_ids_str = " ".join(job_ids)
command.append(self._get_job_ids_flag(job_ids_str))

return " ".join(command)
Expand Down

0 comments on commit 982473b

Please sign in to comment.