fix attribute error

This commit is contained in:
Marcos Pinto 2007-10-23 06:45:21 +00:00
parent 571ecbdfac
commit d17f6ee274
1 changed files with 4 additions and 1 deletions

View File

@ -984,7 +984,10 @@ class Manager:
# Calculations
def calc_ratio(self, unique_ID, torrent_state):
try:
up = float((self.unique_IDs[unique_ID].initial_uploaded_memory + self.get_core_torrent_state(unique_ID, False)['total_upload']) / 1024)
except AttributeError:
up = float(self.get_core_torrent_state(unique_ID, False) / 1024)
down = float(torrent_state["total_done"] / 1024)
try:
ret = up/down