From 757c68619064a6c6f578fab1f863002b2791e7ab Mon Sep 17 00:00:00 2001 From: Witold Filipczyk Date: Fri, 5 May 2023 21:12:10 +0200 Subject: [PATCH] [python] Default utf-8. Refs #231 --- src/scripting/python/hooks.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scripting/python/hooks.c b/src/scripting/python/hooks.c index 41c4787e2..d31711d8f 100644 --- a/src/scripting/python/hooks.c +++ b/src/scripting/python/hooks.c @@ -128,7 +128,7 @@ get_codepage(char *head) none: if (cp_index == -1) { - cp_index = get_cp_index("ISO-8859-1"); + cp_index = get_cp_index("utf-8"); } return cp_index;