Skip to content

Commit

Permalink
tools/test-events-clightning.py: correct an indent error
Browse files Browse the repository at this point in the history
  • Loading branch information
darosior committed Feb 18, 2020
1 parent 6bf9e63 commit 92f3d9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/test-events-clightning.py
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ def recv(self, conn, outbuf, line):
# reading it to figure out what went wrong.
fut = self.executor.submit(self._readmsg, conn)
try:
msg = fut.result(1)
msg = fut.result(1)
except futures.TimeoutError:
msg = None
if msg:
Expand Down

0 comments on commit 92f3d9f

Please sign in to comment.