[Bf-blender-cvs] [f7320c3bf15] master: Fix T82292: Set encoding for keymap export to UTF-8

Robert Guetzkow noreply at git.blender.org
Wed Nov 4 13:23:01 CET 2020


Commit: f7320c3bf159f14f0c39f88b2302a6e64e7eef76
Author: Robert Guetzkow
Date:   Wed Nov 4 10:45:36 2020 +0100
Branches: master
https://developer.blender.org/rBf7320c3bf159f14f0c39f88b2302a6e64e7eef76

Fix T82292: Set encoding for keymap export to UTF-8

Keymaps have previously been exported with an encoding dependent
on the current system locale. This caused issues when the
keymap contained non-ASCII characters, for instance in a string
property for an operator.

Reviewed By: campbellbarton

Differential Revision: https://developer.blender.org/D9449

===================================================================

M	release/scripts/modules/bl_keymap_utils/io.py

===================================================================

diff --git a/release/scripts/modules/bl_keymap_utils/io.py b/release/scripts/modules/bl_keymap_utils/io.py
index e850661d6c6..091cdbc2642 100644
--- a/release/scripts/modules/bl_keymap_utils/io.py
+++ b/release/scripts/modules/bl_keymap_utils/io.py
@@ -164,7 +164,7 @@ def keyconfig_export_as_data(wm, kc, filepath, *, all_keymaps=False):
     # not essential, just convenient to order them predictably.
     export_keymaps.sort(key=lambda k: k[0].name)
 
-    with open(filepath, "w") as fh:
+    with open(filepath, "w", encoding="utf-8") as fh:
         fw = fh.write
 
         # Use the file version since it includes the sub-version



More information about the Bf-blender-cvs mailing list