From: Eric S. Raymond Date: Thu, 4 Oct 2012 18:38:34 +0000 (-0400) Subject: I continue to hate my typos... X-Git-Tag: 1.7~14 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=d9a57aad07aa0308238f4c42f68888c518e58bb7;p=irker.git I continue to hate my typos... --- diff --git a/irkerd b/irkerd index 70ad0f9..1f9b630 100755 --- a/irkerd +++ b/irkerd @@ -158,7 +158,7 @@ class Connection: self.status = "ready" def enqueue(self, channel, message): "Enque a message for transmission." - if self.thread is None or not self.thread_is.alive(): + if self.thread is None or not self.thread.is_alive(): self.thread = threading.Thread(target=self.dequeue) self.thread.setDaemon(True) self.thread.start()