From ce3461dc88fb4abc9460328b06502890e06f50d6 Mon Sep 17 00:00:00 2001 From: SkyJJ <jjchai01@hotmail.com> Date: Wed, 12 Aug 2020 22:52:17 +0200 Subject: Update GDScriptTranslationParserPlugin to use GDSriptParser instead of RegEx. --- editor/translations/extract.py | 2 -- 1 file changed, 2 deletions(-) (limited to 'editor/translations/extract.py') 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) -- cgit v1.2.3