From 351d61c9254bd45bf03ccb609b3fffd14c93d6a2 Mon Sep 17 00:00:00 2001 From: Evgeny Gusarov Date: Tue, 26 Sep 2023 12:46:22 +0300 Subject: [PATCH] Review fix --- sw_utils/ipfs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sw_utils/ipfs.py b/sw_utils/ipfs.py index e3b4998..57192c9 100644 --- a/sw_utils/ipfs.py +++ b/sw_utils/ipfs.py @@ -224,7 +224,7 @@ async def _upload(self, coros: list) -> str: ipfs_hash = max(ipfs_hashes, key=ipfs_hashes.get) # type: ignore count = ipfs_hashes[ipfs_hash] if count < self.quorum: - logger.warning('quorum: %s, ipfs_hashes: %s', self.quorum, ipfs_hashes) + logger.warning('quorum: %s, ipfs hashes: %s', self.quorum, ipfs_hashes) raise IpfsException('Failed to reach the uploads quorum') return ipfs_hash