summaryrefslogtreecommitdiff
path: root/buildstream/element.py
diff options
context:
space:
mode:
Diffstat (limited to 'buildstream/element.py')
-rw-r--r--buildstream/element.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildstream/element.py b/buildstream/element.py
index 2bb492cb3..5c28b4753 100644
--- a/buildstream/element.py
+++ b/buildstream/element.py
@@ -753,7 +753,7 @@ class Element(Plugin):
if workspace and old_dep_keys:
dep.__assert_cached()
- if _yaml.node_contains(old_dep_keys, dep.name):
+ if dep.name in old_dep_keys:
key_new = dep._get_cache_key()
key_old = _yaml.node_get(old_dep_keys, str, dep.name)