The cfg property on events doesn't add much, all code appears to access
"data" at this point. Remove it to clean up the interface.
(Bitbake rev:
bd4b9e4460b60f142c3bf346fb04e360e512eaee)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
def setName(self, name):
self._name = name
- def getCfg(self):
- return self.data
-
- def setCfg(self, cfg):
- self.data = cfg
-
def getFailures(self):
"""
Return the number of failed packages
pkgs = property(getPkgs, setPkgs, None, "pkgs property")
name = property(getName, setName, None, "name property")
- cfg = property(getCfg, setCfg, None, "cfg property")
-
-
class BuildInit(BuildBase):
"""buildFile or buildTargets was invoked"""