diff options
| author | nechda <[email protected]> | 2025-10-20 21:41:47 +0300 |
|---|---|---|
| committer | nechda <[email protected]> | 2025-10-20 21:59:16 +0300 |
| commit | 77ce053ea362164ce965c296450d34786182b9d5 (patch) | |
| tree | c22cedeb58d11fd1c6b9b973afe7c9f0bd99bb11 | |
| parent | 6956886ad943e0e99c0aab92cb8f8ffc2a01f693 (diff) | |
Use text output in check_output
commit_hash:f944debcdcf04bf2cefe49621260f6ada3d4f68a
| -rw-r--r-- | build/scripts/yndexer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/scripts/yndexer.py b/build/scripts/yndexer.py index 4e766e0fc86..9b2c7ebe764 100644 --- a/build/scripts/yndexer.py +++ b/build/scripts/yndexer.py @@ -56,7 +56,7 @@ if __name__ == '__main__': subprocess.check_call(tail_args) clang = tail_args[0] - out = subprocess.check_output([clang, '-print-search-dirs']) + out = subprocess.check_output([clang, '-print-search-dirs'], text=True) resource_dir = rx_resource_dir.search(out).group(1) yndexer_args = ( |
