1
0
mirror of https://github.com/gryf/gryf-overlay.git synced 2026-04-19 07:53:34 +02:00

Fix conf read for tuir

This commit is contained in:
2024-06-14 11:11:50 +02:00
parent 720f445387
commit f7c832875c
2 changed files with 2 additions and 2 deletions

View File

@@ -6,7 +6,7 @@ diff -ur tuir-v1.29.0-orig/tuir/config.py tuir-v1.29.0/tuir/config.py
if os.path.exists(filename):
with codecs.open(filename, encoding='utf-8') as fp:
- config.readfp(fp)
+ config.read(fp)
+ config.read_file(fp)
return cls._parse_tuir_file(config)