mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Possible fix for travis build failure
This commit is contained in:
parent
afb28d01ea
commit
d6ab43d77e
@ -25,7 +25,7 @@ def check_sqf_syntax(filepath):
|
|||||||
def popClosing():
|
def popClosing():
|
||||||
closing << closingStack.pop()
|
closing << closingStack.pop()
|
||||||
|
|
||||||
with open(filepath, 'r') as file:
|
with open(filepath, 'r', encoding='utf-8', errors='ignore') as file:
|
||||||
content = file.read()
|
content = file.read()
|
||||||
|
|
||||||
# Store all brackets we find in this file, so we can validate everything on the end
|
# Store all brackets we find in this file, so we can validate everything on the end
|
||||||
|
Loading…
Reference in New Issue
Block a user