From 1231434c5dba9c73ae4c98fd940ea83580241a2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20K=C3=BCrten?= <sebastian@mobanisto.de> Date: Thu, 1 Jun 2023 09:29:29 +0200 Subject: [PATCH] Fix problem with operator precedence --- upstream/build_tor_macos.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/upstream/build_tor_macos.py b/upstream/build_tor_macos.py index f884a77..ac3ee7d 100755 --- a/upstream/build_tor_macos.py +++ b/upstream/build_tor_macos.py @@ -77,7 +77,7 @@ def build_arch(versions, arch): rmtree(arch_dir / 'data') # print hashsums tor_file = arch_dir / 'tor' - libevent_file = arch_dir / 'libevent-' + libevent_version + '.dylib' + libevent_file = arch_dir / ('libevent-' + libevent_version + '.dylib') for file in [tor_file, libevent_file]: sha256hash = get_sha256(file) print("%s: %s" % (file, sha256hash)) -- GitLab