summaryrefslogtreecommitdiff
path: root/src/buildstream/_frontend/status.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/buildstream/_frontend/status.py')
-rw-r--r--src/buildstream/_frontend/status.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/buildstream/_frontend/status.py b/src/buildstream/_frontend/status.py
index 91f47221a..8a3de75f3 100644
--- a/src/buildstream/_frontend/status.py
+++ b/src/buildstream/_frontend/status.py
@@ -429,8 +429,8 @@ class _StatusHeader():
# Private Methods #
###################################################
def _render_queue(self, queue):
- processed = str(len(queue.processed_elements))
- skipped = str(len(queue.skipped_elements))
+ processed = str(queue.processed_elements_count)
+ skipped = str(queue.skipped_elements_count)
failed = str(len(queue.failed_elements))
size = 5 # Space for the formatting '[', ':', ' ', ' ' and ']'