From b4cd6ce4d7e247af857d262f983c4f69fff03bef Mon Sep 17 00:00:00 2001 From: Aetias Date: Sat, 10 May 2025 20:24:13 +0200 Subject: [PATCH] m2ctx.py: Read in UTF-8 --- tools/m2ctx.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/m2ctx.py b/tools/m2ctx.py index 7c20c34a..64186fa6 100755 --- a/tools/m2ctx.py +++ b/tools/m2ctx.py @@ -36,7 +36,7 @@ INCLUDE_REGEX = r'^\s*#\s*include\s*([<"][\S ]+[>"])\s*$' # Finds all line comments and multiline comments COMMENT_REGEX = r'\/\/.*$|\/\*(?:.|\r|\n)+?\*\/' -with open(args.file, 'r') as f: +with open(args.file, 'r', encoding="utf8") as f: contents = f.read() contents = re.sub(COMMENT_REGEX, '', contents, count=0, flags=re.MULTILINE) includes = re.findall(INCLUDE_REGEX, contents, flags=re.MULTILINE)