Skip to content
This repository has been archived by the owner on Mar 18, 2023. It is now read-only.

Commit

Permalink
Bug fix when using directory path
Browse files Browse the repository at this point in the history
  • Loading branch information
EAR committed Feb 8, 2021
1 parent 4b0eb95 commit dfb5057
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deepl.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def traslate_all(self, file_paths, lang_from, lang_to, wrap_line_limit, delete_o

for file_name in files_in_dir:
file_path = os.path.join(path, file_name)
self.traslate_all([file_path], lang_from, lang_to)
self.traslate_all([file_path], lang_from, lang_to, wrap_line_limit, delete_old)

return

Expand Down

0 comments on commit dfb5057

Please sign in to comment.