Skip to content

Commit de80240

Browse files
committed
fix: add two more missed encodings
Signed-off-by: Henry Schreiner <[email protected]>
1 parent f27cf4a commit de80240

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/cli/test_convert.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
def test_egg_re():
1111
"""Make sure egg_info_re matches."""
1212
egg_names_path = os.path.join(os.path.dirname(__file__), "eggnames.txt")
13-
with open(egg_names_path) as egg_names:
13+
with open(egg_names_path, encoding="utf-8") as egg_names:
1414
for line in egg_names:
1515
line = line.strip()
1616
if line:

0 commit comments

Comments
 (0)