Commit 6100b69d authored by Jeremy Hylton's avatar Jeremy Hylton

Oops. Use 1 for Python 2.1 compatibility.

parent b55ebf89
...@@ -37,7 +37,7 @@ class WorkerThread(threading.Thread): ...@@ -37,7 +37,7 @@ class WorkerThread(threading.Thread):
self.trans = trans self.trans = trans
self.method = method self.method = method
threading.Thread.__init__(self) threading.Thread.__init__(self)
self.setDaemon(True) self.setDaemon(1)
def run(self): def run(self):
try: try:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment