diff options
author | John MacFarlane <jgm@berkeley.edu> | 2014-12-31 11:04:46 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2014-12-31 11:04:46 -0800 |
commit | 4cf38a5569d937142609441a27abf0edb9023da4 (patch) | |
tree | eb3e9f177bd4f9bbcc15deabc9c764e421c59972 /test/spec_tests.py | |
parent | 834266acfdb2aa63e07ae03b08ae11ca21e00dcf (diff) | |
parent | e8a994cddc17eabaa415c73d970205aa489a756c (diff) |
Merge pull request #256 from nwellnhof/windows_fixes
Windows fixes
Diffstat (limited to 'test/spec_tests.py')
-rwxr-xr-x | test/spec_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
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): |