summaryrefslogtreecommitdiffstats
path: root/lib/bb/event.py
diff options
context:
space:
mode:
authorJoshua Lock <josh@linux.intel.com>2011-01-13 18:30:02 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-03-03 22:30:21 +0000
commit4a2fb1b550508d0541a4973dffc69df61d2301ce (patch)
tree41acb3d9b2ef2f2266804132c55cbec0a67c5bbb /lib/bb/event.py
parent04df9b4ce6657af6f1c6e43a5f6ae80bfa51ae2e (diff)
downloadbitbake-4a2fb1b550508d0541a4973dffc69df61d2301ce.tar.gz
bitbake/event: fix some whitespace issues
(From Poky rev: b14cda62d075d1213fc4769aa6b3622a491b57d5) Signed-off-by: Joshua Lock <josh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib/bb/event.py')
-rw-r--r--lib/bb/event.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/bb/event.py b/lib/bb/event.py
index 0612bd67c..b289d3689 100644
--- a/lib/bb/event.py
+++ b/lib/bb/event.py
@@ -355,7 +355,6 @@ class TargetsTreeGenerated(Event):
"""
Event when a set of buildable targets has been generated
"""
-
def __init__(self, model):
Event.__init__(self)
self._model = model
@@ -364,10 +363,9 @@ class ConfigFilesFound(Event):
"""
Event when a list of appropriate config files has been generated
"""
-
def __init__(self, variable, values):
Event.__init__(self)
- self._variable = variable
+ self._variable = variable
self._values = values
class MsgBase(Event):