From 9632b95b9d70f86b3d16cbfc758ea4a47791e0cd Mon Sep 17 00:00:00 2001 From: Vinicius Moreira Date: Thu, 24 Mar 2022 16:25:18 -0300 Subject: [PATCH] [commons] refactoring: using 'en_US.UTF-8' as the the default LANG --- bauh/commons/system.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bauh/commons/system.py b/bauh/commons/system.py index f013febf..7ea8654b 100644 --- a/bauh/commons/system.py +++ b/bauh/commons/system.py @@ -13,7 +13,7 @@ PY_VERSION = "{}.{}".format(sys.version_info.major, sys.version_info.minor) GLOBAL_PY_LIBS = '/usr/lib/python{}'.format(PY_VERSION) PATH = os.getenv('PATH') -DEFAULT_LANG = '' +DEFAULT_LANG = 'en_US.UTF-8' GLOBAL_INTERPRETER_PATH = ':'.join(PATH.split(':')[1:])