diff options
Diffstat (limited to 'bitbake/lib/bb/event.py')
| -rw-r--r-- | bitbake/lib/bb/event.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/bitbake/lib/bb/event.py b/bitbake/lib/bb/event.py index 5b0a183acd..009cbf93ba 100644 --- a/bitbake/lib/bb/event.py +++ b/bitbake/lib/bb/event.py | |||
| @@ -298,11 +298,9 @@ class MultipleProviders(Event): | |||
| 298 | 298 | ||
| 299 | class ParseStarted(Event): | 299 | class ParseStarted(Event): |
| 300 | """Recipe parsing for the runqueue has begun""" | 300 | """Recipe parsing for the runqueue has begun""" |
| 301 | def __init__(self, total, skipped, masked): | 301 | def __init__(self, total): |
| 302 | Event.__init__(self) | 302 | Event.__init__(self) |
| 303 | self.total = total | 303 | self.total = total |
| 304 | self.skipped = skipped | ||
| 305 | self.masked = masked | ||
| 306 | 304 | ||
| 307 | class ParseCompleted(Event): | 305 | class ParseCompleted(Event): |
| 308 | """Recipe parsing for the runqueue has completed""" | 306 | """Recipe parsing for the runqueue has completed""" |
