Revert "Fix #1338 Seeds and Peers totals not updating"

Did not fix the issue.
This reverts commit 1a9ae62669.
This commit is contained in:
Calum Lind 2011-11-29 17:52:13 +00:00
parent d9193fcc4f
commit 4acf548436
1 changed files with 2 additions and 2 deletions

View File

@ -716,8 +716,8 @@ class Torrent(object):
"total_done": self.status.total_done, "total_done": self.status.total_done,
"total_payload_download": self.status.total_payload_download, "total_payload_download": self.status.total_payload_download,
"total_payload_upload": self.status.total_payload_upload, "total_payload_upload": self.status.total_payload_upload,
"total_peers": self.status.list_peers - self.status.list_seeds, "total_peers": self.status.num_incomplete,
"total_seeds": self.status.list_seeds, "total_seeds": self.status.num_complete,
"total_uploaded": self.status.all_time_upload, "total_uploaded": self.status.all_time_upload,
"total_wanted": self.status.total_wanted, "total_wanted": self.status.total_wanted,
"tracker": self.status.current_tracker, "tracker": self.status.current_tracker,