Use utf-8 everywhere

This commit is contained in:
kramo
2023-04-02 07:28:04 +02:00
parent b511ce22b7
commit 960eaa1949
7 changed files with 10 additions and 10 deletions

View File

@@ -46,7 +46,7 @@ def bottles_parser(parent_widget):
bottles_dir = Path(schema.get_string("bottles-location")).expanduser()
current_time = int(time())
data = (bottles_dir / "library.yml").read_text()
data = (bottles_dir / "library.yml").read_text("utf-8")
library = yaml.load(data, Loader=yaml.Loader)