From 62cfbf36cbc7228e75b578b812d5f79358850f17 Mon Sep 17 00:00:00 2001 From: Siarhei Siniak Date: Sat, 18 Jan 2025 21:13:26 +0300 Subject: [PATCH] [+] fix --hash format --- python/online/fxreader/pr34/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/online/fxreader/pr34/commands.py b/python/online/fxreader/pr34/commands.py index 314e9d4..8590592 100644 --- a/python/online/fxreader/pr34/commands.py +++ b/python/online/fxreader/pr34/commands.py @@ -3896,7 +3896,7 @@ def pip_resolve(args: list[str]) -> None: o.url, o.constraint, ' '.join([ - '--hash:sha256=%s' % o2 + '--hash=sha256:%s' % o2 for o2 in o.sha256 ]) )