summaryrefslogtreecommitdiff
path: root/buildstream/element.py
diff options
context:
space:
mode:
Diffstat (limited to 'buildstream/element.py')
-rw-r--r--buildstream/element.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/buildstream/element.py b/buildstream/element.py
index 4b084a1b9..54f93091f 100644
--- a/buildstream/element.py
+++ b/buildstream/element.py
@@ -734,7 +734,7 @@ class Element(Plugin):
consistency = min(consistency, source_consistency)
return consistency
- # _force_inconsistent():
+ # _schedule_tracking():
#
# Force an element state to be inconsistent. Any sources appear to be
# inconsistent.
@@ -745,9 +745,9 @@ class Element(Plugin):
# and reinterrogation of element state after tracking of elements
# succeeds.
#
- def _force_inconsistent(self):
+ def _schedule_tracking(self):
for source in self.__sources:
- source._force_inconsistent()
+ source._schedule_tracking()
# _cached():
#