diff --git a/deluge/core/torrent.py b/deluge/core/torrent.py index 2e657a74d..202e17d07 100644 --- a/deluge/core/torrent.py +++ b/deluge/core/torrent.py @@ -408,7 +408,7 @@ class Torrent(object): stop_ratio = self.options["stop_ratio"] return ((status.all_time_download * stop_ratio) - status.all_time_upload) / status.upload_payload_rate - left = status.total_wanted - status.total_done + left = status.total_wanted - status.total_wanted_done if left <= 0 or status.download_payload_rate == 0: return 0