Fix _on_send_info

This commit is contained in:
Andrew Resch 2008-06-22 23:25:15 +00:00
parent da1b4c68df
commit c5a7abe5d2
1 changed files with 3 additions and 2 deletions

View File

@ -813,7 +813,7 @@ class Core(
self.settings.dont_count_slow_torrents = value
self.session.set_settings(self.settings)
def _on_send_info(self):
def _on_send_info(self, key, value):
log.debug("Sending anonymous stats..")
"""sends anonymous stats home"""
class Send_Info_Thread(threading.Thread):
@ -839,4 +839,5 @@ class Core(
log.debug("Network error while trying to send info: %s", e)
else:
self.config["info_sent"] = now
Send_Info_Thread(self.config).start()
if value:
Send_Info_Thread(self.config).start()