]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
bitbake/event: fix some whitespace issues
authorJoshua Lock <josh@linux.intel.com>
Thu, 13 Jan 2011 18:30:02 +0000 (18:30 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 3 Mar 2011 22:30:21 +0000 (22:30 +0000)
(From Poky rev: b14cda62d075d1213fc4769aa6b3622a491b57d5)

Signed-off-by: Joshua Lock <josh@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
lib/bb/event.py

index 0612bd67cab98ca8634e87ddee157cf9ec423378..b289d36894256a13a4be856aa0d1eeb207ebafc5 100644 (file)
@@ -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):