Skip to content

Commit

Permalink
Clarify the download location of p2pd in setup.py (#633)
Browse files Browse the repository at this point in the history
* Clarify the download location of p2pd in setup.py
  • Loading branch information
xloem authored Nov 4, 2024
1 parent 94c1bf4 commit 83e368a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def download_p2p_daemon():

if sha256(binary_path) != expected_hash:
binary_url = os.path.join(P2PD_BINARY_URL, binary_name)
print(f"Downloading {binary_url}")
print(f"Downloading {binary_url} to {binary_path}")

urllib.request.urlretrieve(binary_url, binary_path)
os.chmod(binary_path, 0o777)
Expand Down

0 comments on commit 83e368a

Please sign in to comment.