Fix missing comma

This commit is contained in:
Kevin F 2022-06-21 12:10:11 -05:00
parent 6b6d357a13
commit b9fa446cb0
1 changed files with 2 additions and 3 deletions

View File

@ -103,9 +103,8 @@ async def stem_out(d_phase: 'DandelionPhase'):
peer_sockets.append(await _setup_edge(gossip_peer_set, tried_edges))
except NotEnoughEdges:
# No possible edges at this point (edges < OUTBOUND_DANDELION_EDGE)
logger.warn(
"Making too few edges for stemout " +
"this is bad for anonymity if frequent."
logger.warn("Making too few edges for stemout " +
"this is bad for anonymity if frequent.",
terminal=True)
not_enough_edges = True
else: