Skip to content

Commit

Permalink
Fix issue with the wrapper attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
dbeltrankyl committed Dec 16, 2024
1 parent d5560e3 commit 718dd9c
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 @@ -266,7 +266,7 @@ def _adjust_new_parameters(self) -> None:
Adjusts job parameters for compatibility with newer added attributes.
"""
# This function is always called at the start of a new run ( from update_parameters )
if not hasattr(self, 'is_wrapper') or not hasattr(self, 'wrapper_name'): # Added in 4.1.12
if not hasattr(self, 'is_wrapper'): # Added in 4.1.12
if not self.packed:
self.is_wrapper = False
self.wrapper_name = self.name
Expand Down

0 comments on commit 718dd9c

Please sign in to comment.