From e7701a96c62f268437f69e92fe6b8ea7ff557fa5 Mon Sep 17 00:00:00 2001 From: Vinicius Moreira Date: Thu, 24 Mar 2022 16:50:28 -0300 Subject: [PATCH] Revert "[commons] refactoring: using 'en_US.UTF-8' as the the default LANG" This reverts commit 9632b95b9d70f86b3d16cbfc758ea4a47791e0cd. --- 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 7ea8654b..f013febf 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 = 'en_US.UTF-8' +DEFAULT_LANG = '' GLOBAL_INTERPRETER_PATH = ':'.join(PATH.split(':')[1:])