From e234781b0576d39cc72ce3cf6e031aeb83fcc6f9 Mon Sep 17 00:00:00 2001 From: Alex Willmer Date: Tue, 24 Oct 2017 01:10:02 +0100 Subject: [PATCH] fakessh: Remove colon causing SyntaxError fixes #58 --- mitogen/fakessh.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mitogen/fakessh.py b/mitogen/fakessh.py index e0c8d963..f7173abe 100644 --- a/mitogen/fakessh.py +++ b/mitogen/fakessh.py @@ -165,7 +165,7 @@ class Process(object): # variants of libc thread operations cannot be interrupted e.g. via # KeyboardInterrupt. isSet() test and wait() are separate since in # <2.7 wait() always returns None. - self.wake_event.wait(0.1): + self.wake_event.wait(0.1) @mitogen.core.takes_router