summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/event.py
diff options
context:
space:
mode:
authorChris Larson <chris_larson@mentor.com>2010-09-09 17:57:51 -0700
committerRichard Purdie <rpurdie@linux.intel.com>2011-01-04 14:46:35 +0000
commit1e7204a7b5b7b9a73759646fa0e297c7b4bc55ed (patch)
tree959416443bd9f554a94dbd09f843b9ca3797f4f2 /bitbake/lib/bb/event.py
parent39d61dc49813a4df97959b392f00f456265363d7 (diff)
downloadpoky-1e7204a7b5b7b9a73759646fa0e297c7b4bc55ed.tar.gz
Turn Event into a new style class
(Bitbake rev: b42221cabeb1193ade134d1d3c0318203ab8eb93) Signed-off-by: Chris Larson <chris_larson@mentor.com> Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake/lib/bb/event.py')
-rw-r--r--bitbake/lib/bb/event.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/event.py b/bitbake/lib/bb/event.py
index 3fb9ff5bfc..f3efae9bdf 100644
--- a/bitbake/lib/bb/event.py
+++ b/bitbake/lib/bb/event.py
@@ -34,7 +34,7 @@ worker_pid = 0
34worker_pipe = None 34worker_pipe = None
35useStdout = True 35useStdout = True
36 36
37class Event: 37class Event(object):
38 """Base class for events""" 38 """Base class for events"""
39 39
40 def __init__(self): 40 def __init__(self):