diff --git a/Custom_Hooks/eb_hooks.py b/Custom_Hooks/eb_hooks.py index 530f02167ddc31e53e816da62e490b30fd31e639..526dc248c18c7a61c6723d52dae167e65b0026d1 100644 --- a/Custom_Hooks/eb_hooks.py +++ b/Custom_Hooks/eb_hooks.py @@ -88,7 +88,7 @@ def get_user_info(): if os.getenv('CI') is None: jutil_path = os.getenv('JUMO_USRCMD_EXEC') if os.path.isfile(jutil_path) and os.access(jutil_path, os.X_OK): - jutil = subprocess.Popen([jutil_path, 'person', 'show', '-o', 'parseable'], stdout=subprocess.PIPE, stderr=subprocess.PIPE) + jutil = subprocess.Popen([jutil_path, 'person', 'show', '-o', 'parsable'], stdout=subprocess.PIPE, stderr=subprocess.PIPE) stdout, stderr = jutil.communicate() if not stderr: return stdout.decode('utf-8').splitlines()[-1].split('|')[0:2]