fix filename generation which didn't work and overwrote existing files

pull/341/head
ben_mkiv 2023-08-24 09:57:01 +07:00
parent ce24ba41e2
commit 00b173857d
1 changed files with 1 additions and 1 deletions

@ -1099,7 +1099,7 @@ def generate_tortoise(**kwargs):
for i, file in enumerate(os.listdir(outdir)):
filename = os.path.basename(file)
extension = os.path.splitext(filename)[-1][1:]
if extension != ".json" and extension != ".wav":
if extension != "json" and extension != "wav":
continue
match = re.findall(rf"^{voice}_(\d+)(?:.+?)?{extension}$", filename)
if match and len(match) > 0: