From eaae568c7cebb2f4a62a8513db7e211d3f1082b8 Mon Sep 17 00:00:00 2001 From: Calum Lind Date: Fri, 27 Nov 2015 13:54:07 +0000 Subject: [PATCH] [Core] Update tracker_host when setting new tracker status --- deluge/core/torrent.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/deluge/core/torrent.py b/deluge/core/torrent.py index c8dadefdf..43a0a1ab1 100644 --- a/deluge/core/torrent.py +++ b/deluge/core/torrent.py @@ -601,7 +601,10 @@ class Torrent(object): Args: status (str): The tracker status. + """ + + self.tracker_host = None self.tracker_status = status def merge_trackers(self, torrent_info):