Skip to content

Commit

Permalink
valedepend.py: fix regex
Browse files Browse the repository at this point in the history
  • Loading branch information
mtzguido committed Jan 4, 2025
1 parent 7099a18 commit d75bc9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/valedepend.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ def collect_dumps_in_order(x):
for y in sorted(dump_deps[x]):
# if x depends on y, y must appear first
collect_dumps_in_order(y)
x_vaf = re.sub('\.dump$', '.types.vaf', x)
x_vaf = re.sub('\\.dump$', '.types.vaf', x)
depends(types_vaf, x)
for vaf in sorted(vaf_vaf_deps[source_vaf] | {source_vaf}):
for x in sorted(vaf_dump_deps[vaf]):
Expand Down

0 comments on commit d75bc9f

Please sign in to comment.