Skip to content

Commit

Permalink
Merge pull request #137 from n8xm/feature-link-aux-insensitive
Browse files Browse the repository at this point in the history
Case insensitivity for link?File and aux?File
  • Loading branch information
zingale authored May 29, 2024
2 parents c17887e + 213b3ba commit 55b5b24
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions params.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,8 +236,8 @@ def load_params(args):
# set the test object data by looking at all the options in
# the current section of the parameter file
valid_options = list(mytest.__dict__.keys())
aux_pat = re.compile(r"aux\d+File")
link_pat = re.compile(r"link\d+File")
aux_pat = re.compile(r"aux\d+File", re.IGNORECASE)
link_pat = re.compile(r"link\d+File", re.IGNORECASE)

for opt in cp.options(sec):

Expand Down

0 comments on commit 55b5b24

Please sign in to comment.