diff options
author | Jean Abou Samra <jean@abou-samra.fr> | 2023-01-30 03:11:54 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2023-01-31 16:30:11 +0100 |
commit | b69cae00b4a13cf306ec92d169b81c965a0865fc (patch) | |
tree | a6bef750d9fd875d56ddb50279d151dce58ffe3c /scripts/utility.py | |
parent | 94566ea3bf85190f21cb347ef5df7e5033e43b0f (diff) | |
download | pygments-git-b69cae00b4a13cf306ec92d169b81c965a0865fc.tar.gz |
Fix lots of missing encoding="utf-8" parameters
Some of these are probably unnecessary (ASCII-only content), but it's
easier not to think about it.
Diffstat (limited to 'scripts/utility.py')
-rw-r--r-- | scripts/utility.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/utility.py b/scripts/utility.py index 4d59a1b2..48056f2c 100644 --- a/scripts/utility.py +++ b/scripts/utility.py @@ -21,7 +21,7 @@ def unpack_output_file(path): skip_until_tokens = path.endswith('.txt') - for linenumber, line in enumerate(open(path).readlines()): + for linenumber, line in enumerate(open(path, encoding='utf-8').readlines()): line = line.strip() if not line: continue |