mirror of
https://github.com/onionshare/onionshare.git
synced 2025-04-29 14:19:30 -04:00
Use daemon = True boolean instead of setter setDaemon in CLI AutoStop thread
This commit is contained in:
parent
303c83604c
commit
db10da294f
1 changed files with 1 additions and 1 deletions
|
@ -614,7 +614,7 @@ class AutoStopTimer(threading.Thread):
|
||||||
|
|
||||||
self.common = common
|
self.common = common
|
||||||
|
|
||||||
self.setDaemon(True)
|
self.daemon = True
|
||||||
self.time = time
|
self.time = time
|
||||||
|
|
||||||
def run(self):
|
def run(self):
|
||||||
|
|
Loading…
Add table
Reference in a new issue