tests: Explicitly open files as utf-8 for travis

This commit is contained in:
Patrick Griffis 2018-04-03 16:38:53 -04:00
parent fd2167d856
commit 33300630a3
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ def validate_language(path):
print('Validating', path)
with open(path, 'r') as f:
with open(path, 'r', encoding='utf-8') as f:
in_event = False
event_input = ''