* use utf-8 encoding on readstatic

This commit is contained in:
KF 2019-11-04 20:10:03 -06:00
parent 9fa05d6e1f
commit 56c901eb8b
1 changed files with 1 additions and 1 deletions

View File

@ -30,6 +30,6 @@ def read_static(file:str, ret_bin:bool=False)->Union[str, bytes]:
mode = 'rb'
else:
mode = 'r'
with open(static_file, mode) as f:
with open(static_file, mode, encoding='utf-8') as f:
data = f.read()
return data