Commit 8e667785 authored by dieter's avatar dieter

fix version incompatibility

parent fcc24f67
......@@ -529,8 +529,8 @@ def _state_details(root): # -> txt
class Daemon(threading.Thread):
"""auxiliary class to create daemon threads and fail if not stopped."""
def __init__(self, **kw):
kw["daemon"] = True
super(Daemon, self).__init__(**kw)
self.daemon = True
def join(self, *args, **kw):
super(Daemon, self).join(*args, **kw)
......
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