aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpg <pg@yandex-team.com>2024-10-19 17:35:06 +0300
committerpg <pg@yandex-team.com>2024-10-19 17:46:23 +0300
commitd920c750e476fa2dc80c45f990d9456b1afeadd1 (patch)
treed7f2d16b3ae2bf393cb8352296d756534bcabfc3
parentf996d333c7cef050083a88d6cdbfc40353e2f574 (diff)
downloadydb-d920c750e476fa2dc80c45f990d9456b1afeadd1.tar.gz
fix for py3 runner
commit_hash:30adefe665fb83ed7b1aa644958e110348e0d117
-rw-r--r--build/scripts/clang_wrapper.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/scripts/clang_wrapper.py b/build/scripts/clang_wrapper.py
index b865c157cf..d5e48b91e1 100644
--- a/build/scripts/clang_wrapper.py
+++ b/build/scripts/clang_wrapper.py
@@ -34,7 +34,7 @@ def fix_path(p):
if __name__ == '__main__':
is_on_win = sys.argv[1] == 'yes'
path = sys.argv[2]
- args = filter(None, [fix(s) for s in sys.argv[3:]])
+ args = list(filter(None, [fix(s) for s in sys.argv[3:]]))
if is_on_win:
path = fix_path(path)
try: