Skip to content

Commit 1539ae1

Browse files
committed
multi_gpu: fix issue with library SONAME containing a newline
1 parent 2a1e5ff commit 1539ae1

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

multi_gpu_copy.py

+1
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@
6666
so_name = so_name.split(".")
6767
lib_name = so_name[0]
6868
suffix = so_name[1:]
69+
suffix = [s.strip() for s in suffix]
6970
suffix = ".".join(suffix)
7071

7172
new_so_name = f"{lib_name}_{package_id}.{suffix}"

0 commit comments

Comments
 (0)