Fix typo in function name

pull/79/head
Erik Johnston 2015-02-17 15:44:41 +00:00
parent e7e20417ca
commit 964bb43fbe
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ class ExpiringCache(object):
except KeyError:
return default
def _purge_cache(self):
def _prune_cache(self):
if not self._expiry_ms:
# zero expiry time means don't expire. This should never get called
# since we have this check in start too.