Skip to content

Commit

Permalink
Allow filename replacements to be dotted libnames
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonGross committed Nov 4, 2021
1 parent 69f5f6a commit af9fbb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion diagnose_error.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def make_reg_string(output, strict_whitespace=False):
else:
re_string = re_escape(error_string)
re_string = re.sub(r'tmp(?:[A-Za-z\d]|\\_)+',
r'[A-Za-z_\\d]+',
r'[A-Za-z_\\d\\.]+',
re_string)
if r'Universe\ instance\ should\ have\ length\ ' not in re_string:
re_string = re.sub(r'[\d]+',
Expand Down

0 comments on commit af9fbb2

Please sign in to comment.