Fix key error after enabling a plugin that introduces a new status key

This commit is contained in:
Andrew Resch 2010-08-23 17:34:30 -07:00
parent dee33745c8
commit 29f61b58fb
1 changed files with 1 additions and 1 deletions

View File

@ -200,7 +200,7 @@ class SessionProxy(component.Component):
else:
# We need to check if a key is expired
for key in keys:
if t - self.cache_times[torrent_id][key] > self.cache_time:
if t - self.cache_times[torrent_id].get(key, 0.0) > self.cache_time:
to_fetch.append(torrent_id)
break