Skip to content

Commit

Permalink
changed default value to []
Browse files Browse the repository at this point in the history
  • Loading branch information
dbeltrankyl committed Dec 10, 2024
1 parent 38b7407 commit 99c00dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autosubmit/job/job.py
Original file line number Diff line number Diff line change
Expand Up @@ -1914,7 +1914,7 @@ def update_job_parameters(self,as_conf, parameters):
self.shape = as_conf.jobs_data[self.section].get("SHAPE", "")
self.script = as_conf.jobs_data[self.section].get("SCRIPT", "")
self.x11 = False if str(as_conf.jobs_data[self.section].get("X11", False)).lower() == "false" else True
self.notify_on = as_conf.jobs_data[self.section].get("NOTIFY_ON", "")
self.notify_on = as_conf.jobs_data[self.section].get("NOTIFY_ON", [])
if self.wrapper_type != "vertical" and self.packed:
self.stat_file = f"{self.script_name[:-4]}_STAT_{self.fail_count}"
else:
Expand Down

0 comments on commit 99c00dc

Please sign in to comment.