Changeset 2040
- Timestamp:
- 10/23/07 06:49:27 (15 months ago)
- Files:
-
- 2 modified
-
tags/deluge-0.5.5.95/src/core.py (modified) (1 diff)
-
trunk/src/core.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
tags/deluge-0.5.5.95/src/core.py
r2039 r2040 988 988 up = float((self.unique_IDs[unique_ID].initial_uploaded_memory + self.get_core_torrent_state(unique_ID, False)['total_upload']) / 1024) 989 989 except AttributeError: 990 up = float(self.get_core_torrent_state(unique_ID, False) / 1024)990 up = float(self.get_core_torrent_state(unique_ID, False)['total_upload'] / 1024) 991 991 down = float(torrent_state["total_done"] / 1024) 992 992 try: -
trunk/src/core.py
r2039 r2040 988 988 up = float((self.unique_IDs[unique_ID].initial_uploaded_memory + self.get_core_torrent_state(unique_ID, False)['total_upload']) / 1024) 989 989 except AttributeError: 990 up = float(self.get_core_torrent_state(unique_ID, False) / 1024)990 up = float(self.get_core_torrent_state(unique_ID, False)['total_upload'] / 1024) 991 991 down = float(torrent_state["total_done"] / 1024) 992 992 try:
