aboutsummaryrefslogtreecommitdiffstats
path: root/build/scripts/clang_wrapper.py
diff options
context:
space:
mode:
authorAlexander Smirnov <alex@ydb.tech>2024-10-19 17:59:18 +0000
committerAlexander Smirnov <alex@ydb.tech>2024-10-19 17:59:18 +0000
commitceddbfe68f6ec7949a4062716c8f9840a59c6888 (patch)
treeabfecadbb9c1e5aea40701dd20d902cb7bccd962 /build/scripts/clang_wrapper.py
parent07f2e60d02d95eab14a86a4b9469db1af7795001 (diff)
parentd920c750e476fa2dc80c45f990d9456b1afeadd1 (diff)
downloadydb-ceddbfe68f6ec7949a4062716c8f9840a59c6888.tar.gz
Merge branch 'rightlib' into mergelibs-241019-1758
Diffstat (limited to 'build/scripts/clang_wrapper.py')
-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: