Skip to content

Commit

Permalink
Merge pull request #168 from HexDecimal/fix-truthy-function
Browse files Browse the repository at this point in the history
Remove always True function check.
  • Loading branch information
HexDecimal authored Nov 10, 2022
2 parents 320754d + deef8c6 commit 60ab91b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion delocate/libsana.py
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ def _tree_libs_from_libraries(
if depending_path is None:
missing_libs = True
continue
if copy_filt_func and not copy_filt_func(depending_path):
if not copy_filt_func(depending_path):
continue
lib_dict.setdefault(depending_path, {})
lib_dict[depending_path][library_path] = install_name
Expand Down

0 comments on commit 60ab91b

Please sign in to comment.