Fix Typo "_host, _port" was missing ", "

This commit is contained in:
Cort Buffington 2015-06-29 14:48:58 -05:00
parent 574a89e7f9
commit 5b4520318f
1 changed files with 1 additions and 1 deletions

View File

@ -905,7 +905,7 @@ class IPSC(DatagramProtocol):
logger.debug('(%s) Master Keep-Alive Request Received from peer %s, %s:%s', self._network, int_id(_peerid), _host, _port)
else:
logger.warning('(%s) Master Keep-Alive Request Received from *UNREGISTERED* peer %s, %s:%s', self._network, int_id(_peerid), _host_port)
logger.warning('(%s) Master Keep-Alive Request Received from *UNREGISTERED* peer %s, %s:%s', self._network, int_id(_peerid), _host, _port)
# WE ARE MASTER AND A PEER HAS REQUESTED A PEER LIST - SEND THEM ONE
def peer_list_req(self, _peerid):