Skip to content

Commit

Permalink
fixed escape slash
Browse files Browse the repository at this point in the history
  • Loading branch information
maureeungaro committed Jul 17, 2024
1 parent ce741f4 commit 7e5a47d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion loadgcadmesh.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def loadcadmesh(env, OSENV) :
for dir in libs:
basename = os.path.basename(dir)
wout_lib = basename.strip('lib')
lib = re.sub(".a", "", wout_lib)
lib = re.sub(r"\.a", "", wout_lib)
glibs.append(lib)


Expand Down

0 comments on commit 7e5a47d

Please sign in to comment.