call to setDaemon uses Bool argument
The argument 1 should be True in these files.
This commit is contained in:
@ -778,7 +778,7 @@ class IdleThread:
|
||||
self.thread = Thread(target=self.noop)
|
||||
else:
|
||||
self.thread = Thread(target=self.__idle)
|
||||
self.thread.setDaemon(1)
|
||||
self.thread.setDaemon(True)
|
||||
|
||||
def start(self):
|
||||
self.thread.start()
|
||||
|
Reference in New Issue
Block a user