From 3d1b122bcafe195d7787883c10f73d3e82d0d42e Mon Sep 17 00:00:00 2001 From: Micah Lee Date: Sun, 19 Jun 2022 15:28:04 -0400 Subject: [PATCH] Fix get-tor bug --- desktop/scripts/get-tor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desktop/scripts/get-tor.py b/desktop/scripts/get-tor.py index bda4e8b8..5df6918f 100644 --- a/desktop/scripts/get-tor.py +++ b/desktop/scripts/get-tor.py @@ -66,7 +66,7 @@ def get_tor_windows(platform): print("Downloading {}".format(win_url)) r = requests.get(win_url) open(win_path, "wb").write(r.content) - exe_sha256 = hashlib.sha256(r.content).hexdigest() + win_sha256 = hashlib.sha256(r.content).hexdigest() else: print("Already downloaded: {}".format(win_path)) win_data = open(win_path, "rb").read()