summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsnermolaev <[email protected]>2023-11-29 15:49:51 +0300
committersnermolaev <[email protected]>2023-11-29 18:09:41 +0300
commit64b8da6a50eab85830748dcf3986bda29e8228d5 (patch)
treeff77d3d8021a57d26c495133b47ada5f7e11b3eb
parentcda641a9aa841cd5dacc4935bc5a6b0fea3f2e2e (diff)
MacOS taxi/ml build fail
-rwxr-xr-xbuild/ymake_conf.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/ymake_conf.py b/build/ymake_conf.py
index d71122cb3ed..ecc7546f954 100755
--- a/build/ymake_conf.py
+++ b/build/ymake_conf.py
@@ -286,7 +286,7 @@ def get_stdout_and_code(command):
try:
process = subprocess.Popen(command, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
stdout, _ = process.communicate()
- return stdout, process.returncode
+ return six.ensure_str(stdout), process.returncode
except Exception as e:
logger.info("While run: `%s`", e)
return None, None