summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--repoze/lru/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/repoze/lru/__init__.py b/repoze/lru/__init__.py
index 7d9e50a..39a8018 100644
--- a/repoze/lru/__init__.py
+++ b/repoze/lru/__init__.py
@@ -321,7 +321,7 @@ class CacheMaker(object):
_name= str(uuid.uuid4())
## the probability of collision is so low ....
while _name in self._cache.keys():
- _name=str(uuid.uuid4())
+ _name=str(uuid.uuid4()) #pragma NO COVER
else:
if name in self._cache:
raise KeyError("cache %s already in use" % name)