diff options
-rw-r--r-- | bitbake/lib/bb/ui/knotty.py | 23 |
1 files changed, 8 insertions, 15 deletions
diff --git a/bitbake/lib/bb/ui/knotty.py b/bitbake/lib/bb/ui/knotty.py index b6ca15b4fb..a7611a91a5 100644 --- a/bitbake/lib/bb/ui/knotty.py +++ b/bitbake/lib/bb/ui/knotty.py | |||
@@ -149,21 +149,14 @@ def init(server, eventHandler): | |||
149 | break | 149 | break |
150 | 150 | ||
151 | # ignore | 151 | # ignore |
152 | if isinstance(event, bb.event.BuildStarted): | 152 | if isinstance(event, (bb.event.BuildBase, |
153 | continue | 153 | bb.event.NoProvider, |
154 | if isinstance(event, bb.event.BuildCompleted): | 154 | bb.event.MultipleProviders, |
155 | continue | 155 | bb.event.StampUpdate, |
156 | if isinstance(event, bb.event.MultipleProviders): | 156 | bb.event.ConfigParsed, |
157 | continue | 157 | bb.event.RecipeParsed, |
158 | if isinstance(event, bb.runqueue.runQueueEvent): | 158 | bb.runqueue.runQueueEvent, |
159 | continue | 159 | bb.runqueue.runQueueExitWait)): |
160 | if isinstance(event, bb.runqueue.runQueueExitWait): | ||
161 | continue | ||
162 | if isinstance(event, bb.event.StampUpdate): | ||
163 | continue | ||
164 | if isinstance(event, bb.event.ConfigParsed): | ||
165 | continue | ||
166 | if isinstance(event, bb.event.RecipeParsed): | ||
167 | continue | 160 | continue |
168 | print("Unknown Event: %s" % event) | 161 | print("Unknown Event: %s" % event) |
169 | 162 | ||