summaryrefslogtreecommitdiffstats
path: root/lib/bb/event.py
diff options
context:
space:
mode:
authorChris Larson <chris_larson@mentor.com>2010-09-09 17:57:51 -0700
committerChris Larson <chris_larson@mentor.com>2010-09-09 17:57:51 -0700
commitb42221cabeb1193ade134d1d3c0318203ab8eb93 (patch)
tree18e7a75b9e1d7e8d90f0cb7a1cb39609825a0eac /lib/bb/event.py
parent82928613256bad92fde9f4071244a53e20fc89ee (diff)
downloadbitbake-b42221cabeb1193ade134d1d3c0318203ab8eb93.tar.gz
Turn Event into a new style class
Signed-off-by: Chris Larson <chris_larson@mentor.com>
Diffstat (limited to 'lib/bb/event.py')
-rw-r--r--lib/bb/event.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/event.py b/lib/bb/event.py
index bf1812e69..feb250d33 100644
--- a/lib/bb/event.py
+++ b/lib/bb/event.py
@@ -33,7 +33,7 @@ import bb.utils
worker_pid = 0
worker_pipe = None
-class Event:
+class Event(object):
"""Base class for events"""
def __init__(self):