summaryrefslogtreecommitdiffstats
path: root/lib/bb/ui
diff options
context:
space:
mode:
authorChris Larson <clarson@mvista.com>2009-09-12 22:42:45 -0700
committerChris Larson <clarson@mvista.com>2009-09-14 11:08:23 -0700
commita002f4f0d13ea7dca261b77d5e2278c3fd35acda (patch)
tree858bfe8315b4052f3a0b153d173a04dfebbc4791 /lib/bb/ui
parent30d00e1a550931cb7f62e6574a7dd2d7b33f182b (diff)
downloadbitbake-a002f4f0d13ea7dca261b77d5e2278c3fd35acda.tar.gz
Add a RecipeParsed event, which can be used as an alternative to anonymous functions.
Signed-off-by: Chris Larson <clarson@mvista.com>
Diffstat (limited to 'lib/bb/ui')
-rw-r--r--lib/bb/ui/knotty.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/bb/ui/knotty.py b/lib/bb/ui/knotty.py
index a334c2977..a8b5829e4 100644
--- a/lib/bb/ui/knotty.py
+++ b/lib/bb/ui/knotty.py
@@ -140,6 +140,8 @@ def init(server, eventHandler):
continue
if event[0].startswith('bb.event.ConfigParsed'):
continue
+ if event[0].startswith('bb.event.RecipeParsed'):
+ continue
print "Unknown Event: %s" % event
except KeyboardInterrupt: