remove comment
This commit is contained in:
parent
bc33cad999
commit
60ce393531
1 changed files with 1 additions and 1 deletions
|
@ -89,7 +89,7 @@ class BlobExchangeClientProtocol(asyncio.Protocol):
|
|||
log.error("error downloading blob from %s:%i: %s", self.peer_address, self.peer_port, err)
|
||||
if self._response_fut and not self._response_fut.done():
|
||||
self._response_fut.set_exception(err)
|
||||
except asyncio.TimeoutError as err: # TODO: is this needed?
|
||||
except asyncio.TimeoutError as err:
|
||||
log.error("%s downloading blob from %s:%i", str(err), self.peer_address, self.peer_port)
|
||||
if self._response_fut and not self._response_fut.done():
|
||||
self._response_fut.set_exception(err)
|
||||
|
|
Loading…
Reference in a new issue