diff options
author | robot-piglet <robot-piglet@yandex-team.com> | 2025-06-04 12:10:18 +0300 |
---|---|---|
committer | robot-piglet <robot-piglet@yandex-team.com> | 2025-06-04 12:24:20 +0300 |
commit | 363a2f6e500d85aea80c6edd60a7918b4eb43fa9 (patch) | |
tree | 12ee34725262d3380cb0d6f6114ff3127134070b | |
parent | c8560faff9312e58047583833d287c8f7a706697 (diff) | |
download | ydb-363a2f6e500d85aea80c6edd60a7918b4eb43fa9.tar.gz |
Intermediate changes
commit_hash:e25f917c35b426ceef2da831c159597de9d6b6cb
-rw-r--r-- | library/python/testing/yatest_common/yatest/common/process.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/library/python/testing/yatest_common/yatest/common/process.py b/library/python/testing/yatest_common/yatest/common/process.py index 748c5ad2ea2..14a1db8246a 100644 --- a/library/python/testing/yatest_common/yatest/common/process.py +++ b/library/python/testing/yatest_common/yatest/common/process.py @@ -733,6 +733,7 @@ def py_execute( def _format_error(error): + error, _ = _try_convert_bytes_to_string(error) return truncate(error, MAX_MESSAGE_LEN) |