Wasn't calling setDaemon on threads spawned in PeriodicFileDownloader.

This commit is contained in:
Jeremy Fincher 2003-09-06 18:18:34 +00:00
parent 526ac1ee18
commit 0c9efdf1ae

View File

@ -138,6 +138,7 @@ class PeriodicFileDownloader(object):
name = '%s #%s' % (filename, self.downloadedCounter[filename])
t = threading.Thread(target=self._downloadFile, name=name,
args=(filename, url, f))
t.setDaemon(True)
t.start()
world.threadsSpawned += 1