Locale fix

Date formatting sometimes didn't use the correct locale encoding
master
Peter Šurda 7 years ago
parent c29f266020
commit 92e3e62640

@ -106,6 +106,7 @@ def change_translation(locale):
lang = pythonlocale.normalize(l10n.getTranslationLanguage())
try:
pythonlocale.setlocale(pythonlocale.LC_ALL, lang)
l10n.encoding = pythonlocale.nl_langinfo(pythonlocale.CODESET)
except:
logger.error("Failed to set locale to %s", lang, exc_info=True)

Loading…
Cancel
Save