From e9e8fa617a666b9ef36fb47dedb3d0fe96dfca48 Mon Sep 17 00:00:00 2001 From: Nick Wellnhofer Date: Wed, 31 Dec 2014 16:24:55 +0100 Subject: Fix spec tests on Windows --- test/spec_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/spec_tests.py') diff --git a/test/spec_tests.py b/test/spec_tests.py index b8b480e..cc676be 100755 --- a/test/spec_tests.py +++ b/test/spec_tests.py @@ -84,7 +84,7 @@ def get_tests(specfile): header_re = re.compile('#+ ') - with open(specfile, 'r') as specf: + with open(specfile, 'r', encoding='utf-8') as specf: for line in specf: line_number = line_number + 1 if state == 0 and re.match(header_re, line): -- cgit v1.2.3