From 723db3e40603f733c9127d33bc1a1c5368cecafe Mon Sep 17 00:00:00 2001 From: Richard Neumann Date: Thu, 16 Jun 2022 15:25:05 +0200 Subject: [PATCH] So not write in binary mode --- rcon/gui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rcon/gui.py b/rcon/gui.py index a0d2082..8de495b 100644 --- a/rcon/gui.py +++ b/rcon/gui.py @@ -167,7 +167,7 @@ class GUI(Gtk.Window): # pylint: disable=R0902 def save_gui_settings(self): """Saves the GUI settings to the cache file.""" try: - with CACHE_FILE.open('wb') as cache: + with CACHE_FILE.open('w', encoding='utf-8') as cache: dump(self.gui_settings, cache) except PermissionError: LOGGER.error('Insufficient permissions to read: %s', CACHE_FILE)