Commit 66cb9d57 authored by Antoine Pitrou's avatar Antoine Pitrou

Try to fix #4674: test_normalization failure on some buildbots.

parent 0b24b3d9
......@@ -9,7 +9,7 @@ TESTDATAFILE = "NormalizationTest.txt"
TESTDATAURL = "http://www.unicode.org/Public/" + unidata_version + "/ucd/" + TESTDATAFILE
if os.path.exists(TESTDATAFILE):
f = open(TESTDATAFILE)
f = open(TESTDATAFILE, encoding='utf-8')
l = f.readline()
f.close()
if not unidata_version in l:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment