Merge branch 'fix_LC_MESSAGES_regression' into vend_ptk

This commit is contained in:
Morten Enemark Lund 2020-08-06 12:00:17 +02:00
commit dd5abc909d

View file

@ -990,7 +990,9 @@ def DEFAULT_VARS():
always_false,
locale_convert("LC_MESSAGES"),
ensure_string,
locale.setlocale(locale.LC_MESSAGES) if hasattr(locale, "LC_MESSAGES") else "",
locale.setlocale(locale.LC_MESSAGES)
if hasattr(locale, "LC_MESSAGES")
else "",
),
"LC_MONETARY": Var(
always_false,