summaryrefslogtreecommitdiff
path: root/stevedore
diff options
context:
space:
mode:
Diffstat (limited to 'stevedore')
-rw-r--r--stevedore/_cache.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/stevedore/_cache.py b/stevedore/_cache.py
index 15f0fff..d0574f5 100644
--- a/stevedore/_cache.py
+++ b/stevedore/_cache.py
@@ -116,7 +116,7 @@ def _build_cacheable_data(path):
# package that provides entry points using tox, where the
# package is installed in the virtualenv that tox builds
# and is present in the path as '.'.
- item = ep[:] # convert namedtuple to tuple
+ item = ep.name, ep.value, ep.group # convert to tuple
if item in existing:
continue
existing.add(item)