Skip to content

Commit

Permalink
GH-2065: Correct join character for jobs in wrapper (was &, is now _)
Browse files Browse the repository at this point in the history
  • Loading branch information
kinow committed Jan 16, 2025
1 parent 120c335 commit 10c1caa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autosubmit/job/job_packages.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def jobs_in_wrapper_str(as_conf, current_wrapper):
else:
jobs_in_wrapper = jobs_in_wrapper.split(" ")
jobs_in_wrapper = [job.strip(" ,") for job in jobs_in_wrapper]
return "&".join(jobs_in_wrapper)
return "_".join(jobs_in_wrapper)
class JobPackageBase(object):
"""
Class to manage the package of jobs to be submitted by autosubmit
Expand Down

0 comments on commit 10c1caa

Please sign in to comment.