fix dot in name

This commit is contained in:
Wolfang Torres
2026-06-20 12:03:01 +08:00
parent ab495b6d31
commit d797e655c6
2 changed files with 2 additions and 1 deletions

View File

@@ -177,7 +177,7 @@ class ProcessFile:
"""Posible name for the output file, still missing the filetype"""
if self.language_id is None:
raise ValueError("Not a valid language selected")
return self.out_folder / f"{self.input_file.stem}.{self.language_id}."
return self.out_folder / f"{self.input_file.stem}.{self.language_id}.temp"
@property
def dictionary_resource_file(self):