From 484a1df32d5854312ef31c5b488fc07fff8428c4 Mon Sep 17 00:00:00 2001 From: Sergey Lukjanov Date: Thu, 30 May 2013 08:32:42 +0400 Subject: Enable hacking H403 test H403 multi line docstring end on new line Change-Id: I33249651026b54ef346214965e909835288bb14e --- openstack/common/memorycache.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'openstack/common/memorycache.py') 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(): -- cgit