From 816c696255d4199ebbda20716b8e782701f048d8 Mon Sep 17 00:00:00 2001 From: Aetias Date: Wed, 5 Feb 2025 16:48:26 +0100 Subject: [PATCH] m2ctx.py: Specify input encoding --- tools/m2ctx.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/m2ctx.py b/tools/m2ctx.py index f2275e33..7eef9bd7 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=args.encoding) 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)