From 9b872104da47cb01a709b8e33275d06fe72b83c7 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Sat, 26 Feb 2022 23:10:27 +0100 Subject: [PATCH] setup_crypto: remove unused function --- setup_crypto.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/setup_crypto.py b/setup_crypto.py index 313bedbc7..65eb44fd0 100644 --- a/setup_crypto.py +++ b/setup_crypto.py @@ -6,11 +6,6 @@ is_win32 = sys.platform.startswith('win32') -def multi_join(paths, *path_segments): - """apply os.path.join on a list of paths""" - return [os.path.join(*(path_segments + (path,))) for path in paths] - - def crypto_ext_kwargs(pc, system_prefix): if system_prefix: print('Detected OpenSSL [via BORG_OPENSSL_PREFIX]')