From 35e7cc685f3428c5c7b08c93e0fc7c83e19e80a7 Mon Sep 17 00:00:00 2001 From: Jack Robison Date: Wed, 24 Jul 2019 22:12:51 -0400 Subject: [PATCH] fix logging error --- lbry/lbry/blob_exchange/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lbry/lbry/blob_exchange/client.py b/lbry/lbry/blob_exchange/client.py index 37b07edbd..ff3516d32 100644 --- a/lbry/lbry/blob_exchange/client.py +++ b/lbry/lbry/blob_exchange/client.py @@ -187,7 +187,7 @@ class BlobExchangeClientProtocol(asyncio.Protocol): return await self._download_blob() except OSError as e: # i'm not sure how to fix this race condition - jack - log.warning("race happened downloading %s from %s:%i", blob_hash, self.peer_address, self.peer_port) + log.warning("race happened downloading %s from %s:%s", blob_hash, self.peer_address, self.peer_port) # return self._blob_bytes_received, self.transport raise except asyncio.TimeoutError: