Merge pull request #104 from Corwin74/fix-ini
Fix error when running initialise.py on localized Windows
This commit is contained in:
@@ -7,7 +7,7 @@ def ktx_to_dict(input_file, keystarter='<'):
|
|||||||
""" parsing keyed text to a python dictionary. """
|
""" parsing keyed text to a python dictionary. """
|
||||||
answer = dict()
|
answer = dict()
|
||||||
|
|
||||||
with open(input_file, 'r+') as f:
|
with open(input_file, 'r+', encoding='utf-8') as f:
|
||||||
lines = f.readlines()
|
lines = f.readlines()
|
||||||
|
|
||||||
k, val = '', ''
|
k, val = '', ''
|
||||||
|
|||||||
Reference in New Issue
Block a user