summaryrefslogtreecommitdiffstats
path: root/openstack/common/memorycache.py
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2013-05-30 11:02:35 +0000
committerGerrit Code Review <review@openstack.org>2013-05-30 11:02:35 +0000
commit7e2805025d86220df0678110df933745a46db178 (patch)
treea645cf653e190ba246305ba0a5bcb7faf77e1d2d /openstack/common/memorycache.py
parent95da21822653c878973bd267eea36b9683040d6d (diff)
parent484a1df32d5854312ef31c5b488fc07fff8428c4 (diff)
downloadoslo-7e2805025d86220df0678110df933745a46db178.tar.gz
oslo-7e2805025d86220df0678110df933745a46db178.tar.xz
oslo-7e2805025d86220df0678110df933745a46db178.zip
Merge "Enable hacking H403 test"
Diffstat (limited to 'openstack/common/memorycache.py')
-rw-r--r--openstack/common/memorycache.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/openstack/common/memorycache.py b/openstack/common/memorycache.py
index 23847e6..f60143a 100644
--- a/openstack/common/memorycache.py
+++ b/openstack/common/memorycache.py
@@ -57,7 +57,8 @@ class Client(object):
def get(self, key):
"""Retrieves the value for a key or None.
- this expunges expired keys during each get"""
+ This expunges expired keys during each get.
+ """
now = timeutils.utcnow_ts()
for k in self.cache.keys():