From 5f4a2533ecb0e835ddc7c2e4426e05f2b5ee6c9e Mon Sep 17 00:00:00 2001 From: Andrew Resch Date: Fri, 28 Nov 2008 23:39:46 +0000 Subject: [PATCH] Include the tracker host in tracker status string --- deluge/core/torrent.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deluge/core/torrent.py b/deluge/core/torrent.py index 24534552c..dce0e7c0b 100644 --- a/deluge/core/torrent.py +++ b/deluge/core/torrent.py @@ -340,7 +340,7 @@ class Torrent: def set_tracker_status(self, status): """Sets the tracker status""" - self.tracker_status = status + self.tracker_status = self.get_tracker_host() + ": " + status def update_state(self): """Updates the state based on what libtorrent's state for the torrent is"""