SYN-338: Fix typo that caused the cache to throw an exception in some instances

pull/119/head
Erik Johnston 2015-04-08 16:34:23 +01:00
parent 532ebc4a82
commit ccda401dbf
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ class ExpiringCache(object):
if self._max_len and len(self._cache.keys()) > self._max_len:
sorted_entries = sorted(
self._cache.items(),
key=lambda k, v: v.time,
key=lambda (k, v): v.time,
)
for k, _ in sorted_entries[self._max_len:]: