From 66c4fbc2a6acae695da77b54c7c2812e1499773e Mon Sep 17 00:00:00 2001 From: meisnate12 Date: Mon, 16 May 2022 09:59:46 -0400 Subject: [PATCH] [102] fix YAML encoding --- VERSION | 2 +- modules/util.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index 00af9aa0..e625af53 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.16.5-develop101 +1.16.5-develop102 diff --git a/modules/util.py b/modules/util.py index 768ac9f3..f2de8edc 100644 --- a/modules/util.py +++ b/modules/util.py @@ -823,7 +823,7 @@ class YAML: def save(self): if self.path: - with open(self.path, 'w') as fp: + with open(self.path, 'w', encoding="utf-8") as fp: self.yaml.dump(self.data, fp) class Overlay: