final fix

This commit is contained in:
joey0320
2023-04-28 13:30:34 -07:00
parent 27728a70ef
commit 30ec9806e0

View File

@@ -141,7 +141,11 @@ def write_filelist(modules, out_file):
for path in fl:
writeOut = False
for dm in modules:
if dm in path:
bm_ext = os.path.basename(path).split(".")
bm_ext.pop()
bm = ".".join(bm_ext)
print(bm)
if dm == bm:
writeOut = True
break