aboutsummaryrefslogtreecommitdiffstats
path: root/build/ymake_conf.py
diff options
context:
space:
mode:
authorsnermolaev <snermolaev@yandex-team.com>2023-11-29 15:49:51 +0300
committersnermolaev <snermolaev@yandex-team.com>2023-11-29 18:09:41 +0300
commit64b8da6a50eab85830748dcf3986bda29e8228d5 (patch)
treeff77d3d8021a57d26c495133b47ada5f7e11b3eb /build/ymake_conf.py
parentcda641a9aa841cd5dacc4935bc5a6b0fea3f2e2e (diff)
downloadydb-64b8da6a50eab85830748dcf3986bda29e8228d5.tar.gz
MacOS taxi/ml build fail
Diffstat (limited to 'build/ymake_conf.py')
-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 d71122cb3e..ecc7546f95 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