Daemonize receiver thread.

This commit is contained in:
Andrew Resch 2007-10-15 04:35:37 +00:00
parent d690e44194
commit b3d15c7117
1 changed files with 1 additions and 0 deletions

View File

@ -180,6 +180,7 @@ class Core(
self._on_alert_torrent_paused) self._on_alert_torrent_paused)
t = threading.Thread(target=self.serve_forever) t = threading.Thread(target=self.serve_forever)
t.setDaemon(True)
t.start() t.start()
gobject.threads_init() gobject.threads_init()