1
0

set daemon thread in exchange rates plugin

This commit is contained in:
ThomasV
2015-04-23 17:43:18 +02:00
parent b9537b0885
commit dd6fd46913

View File

@@ -506,7 +506,9 @@ class Plugin(BasePlugin):
self.tx_list = tx_list
self.cur_exchange = self.config.get('use_exchange', "Blockchain")
threading.Thread(target=self.request_history_rates, args=()).start()
t = threading.Thread(target=self.request_history_rates, args=())
t.setDaemon(True)
t.start()
def requires_settings(self):