summaryrefslogtreecommitdiffstats
path: root/lib/bb/event.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/bb/event.py')
-rw-r--r--lib/bb/event.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/bb/event.py b/lib/bb/event.py
index 3f291ec27..647d02935 100644
--- a/lib/bb/event.py
+++ b/lib/bb/event.py
@@ -338,9 +338,10 @@ class CacheLoadProgress(Event):
class CacheLoadCompleted(Event):
"""Cache loading is complete"""
- def __init__(self, total):
+ def __init__(self, total, num_entries):
Event.__init__(self)
self.total = total
+ self.num_entries = num_entries
class DepTreeGenerated(Event):