diff options
author | SkyJJ <jjchai01@hotmail.com> | 2020-08-12 22:52:17 +0200 |
---|---|---|
committer | SkyJJ <jjchai01@hotmail.com> | 2020-08-19 03:10:51 +0200 |
commit | ce3461dc88fb4abc9460328b06502890e06f50d6 (patch) | |
tree | ce194835a006aa05e51390b7ebfa0ff800786e0b /editor/translations/extract.py | |
parent | 0ef758eaeeb5b2f44e132865f0f10baf692e972f (diff) | |
download | redot-engine-ce3461dc88fb4abc9460328b06502890e06f50d6.tar.gz |
Update GDScriptTranslationParserPlugin to use GDSriptParser instead of RegEx.
Diffstat (limited to 'editor/translations/extract.py')
-rwxr-xr-x | editor/translations/extract.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/editor/translations/extract.py b/editor/translations/extract.py index 5ca3d8c0ed..02ed65131f 100755 --- a/editor/translations/extract.py +++ b/editor/translations/extract.py @@ -167,8 +167,6 @@ def process_file(f, fname): print("Updating the editor.pot template...") for fname in matches: - # NOTE FOR MENTORS: When I tested on windows I need to add encoding="utf8" at the end to be able to open the file. - # maybe on Linux there's no need. with open(fname, "r", encoding="utf8") as f: process_file(f, fname) |