summaryrefslogtreecommitdiff
path: root/scripts/utility.py
diff options
context:
space:
mode:
authorJean Abou Samra <jean@abou-samra.fr>2023-01-30 03:11:54 +0100
committerGeorg Brandl <georg@python.org>2023-01-31 16:30:11 +0100
commitb69cae00b4a13cf306ec92d169b81c965a0865fc (patch)
treea6bef750d9fd875d56ddb50279d151dce58ffe3c /scripts/utility.py
parent94566ea3bf85190f21cb347ef5df7e5033e43b0f (diff)
downloadpygments-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.py2
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