Fix formatting lint issues
This commit is contained in:
parent
4f1e14da2a
commit
e249e501cc
|
@ -38,7 +38,7 @@ class Connection(threading.Thread):
|
||||||
self.vectors_to_get = set()
|
self.vectors_to_get = set()
|
||||||
self.vectors_to_send = set()
|
self.vectors_to_send = set()
|
||||||
|
|
||||||
self.vectors_requested = dict()
|
self.vectors_requested = {}
|
||||||
|
|
||||||
self.status = 'ready'
|
self.status = 'ready'
|
||||||
|
|
||||||
|
|
|
@ -197,7 +197,7 @@ def start_ip_listener():
|
||||||
'Error while starting IPv4 listener on port %s.'
|
'Error while starting IPv4 listener on port %s.'
|
||||||
' However the IPv6 one seems to be working'
|
' However the IPv6 one seems to be working'
|
||||||
' and will probably accept IPv4 connections.', # 48 on macos
|
' and will probably accept IPv4 connections.', # 48 on macos
|
||||||
shared.listening_port, exc_info=(e.errno not in (48, 98)))
|
shared.listening_port, exc_info=e.errno not in (48, 98))
|
||||||
else:
|
else:
|
||||||
logging.warning(
|
logging.warning(
|
||||||
'Error while starting IPv4 listener on port %s.'
|
'Error while starting IPv4 listener on port %s.'
|
||||||
|
|
Loading…
Reference in New Issue
Block a user