Skip to content

Commit 8321952

Browse files
committed
delocate/tools.py (_remove_absolute_rpaths): Replace use of deprecated get_rpaths
1 parent 3671252 commit 8321952

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

delocate/tools.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -814,7 +814,7 @@ def _remove_absolute_rpaths(filename: str, ad_hoc_sign: bool = True) -> None:
814814
filename,
815815
(
816816
rpath
817-
for rpath in get_rpaths(filename)
817+
for rpath in itertools.chain(*_get_rpaths(filename).values())
818818
if not _is_rpath_sanitary(rpath)
819819
),
820820
ad_hoc_sign,

0 commit comments

Comments
 (0)