Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Mips2648 committed Feb 5, 2025
1 parent 7c62ddb commit 7bccb2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugintranslations/translator.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ def find_prompts_in_all_files(self):
filename = Path(file)
if filename.suffix in FILE_EXTS:
absolute_file_path = root/filename
jeedom_file_path = absolute_file_path.relative_to(self._plugin_root)
jeedom_file_path = absolute_file_path.relative_to(self.__plugin_root)
jeedom_file_path = (f"plugins/{self.plugin_id}"/jeedom_file_path).as_posix()
self.__logger.info(f" {jeedom_file_path}...")
self.__files[jeedom_file_path] = SourceFile(absolute_file_path, self.__logger)
Expand Down

0 comments on commit 7bccb2a

Please sign in to comment.