First change outside of deluge/ui/console - fixed a problem when removing torrents

This commit is contained in:
Asmageddon 2012-07-01 22:34:09 +02:00 committed by Calum Lind
parent b5ea33e506
commit c741e127b9
1 changed files with 18 additions and 8 deletions

View File

@ -102,10 +102,16 @@ class SessionProxy(component.Component):
"""
sd = {}
for torrent_id in torrent_ids:
try:
if keys:
sd[torrent_id] = dict([(x, y) for x, y in self.torrents[torrent_id][1].iteritems() if x in keys])
sd[torrent_id] = dict([
(x, y) for x, y in self.torrents[torrent_id][1].iteritems()
if x in keys
])
else:
sd[torrent_id] = dict(self.torrents[torrent_id][1])
except KeyError:
continue
return sd
@ -179,10 +185,14 @@ class SessionProxy(component.Component):
# Update the internal torrent status dict with the update values
t = time.time()
for key, value in result.items():
try:
self.torrents[key][0] = t
self.torrents[key][1].update(value)
for k in value:
self.cache_times[key][k] = t
except KeyError:
#The torrent was removed
continue
# Create the status dict
if not torrent_ids: