summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/ui/buildinfohelper.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/ui/buildinfohelper.py')
-rw-r--r--bitbake/lib/bb/ui/buildinfohelper.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/ui/buildinfohelper.py b/bitbake/lib/bb/ui/buildinfohelper.py
index ed43f4c10d..448f263f5a 100644
--- a/bitbake/lib/bb/ui/buildinfohelper.py
+++ b/bitbake/lib/bb/ui/buildinfohelper.py
@@ -849,7 +849,7 @@ class BuildInfoHelper(object):
849 # pylint: disable=bad-continuation 849 # pylint: disable=bad-continuation
850 # we do not follow the python conventions for continuation indentation due to long lines here 850 # we do not follow the python conventions for continuation indentation due to long lines here
851 851
852 def __init__(self, server, has_build_history = False): 852 def __init__(self, server, has_build_history = False, brbe = None):
853 self.internal_state = {} 853 self.internal_state = {}
854 self.internal_state['taskdata'] = {} 854 self.internal_state['taskdata'] = {}
855 self.internal_state['targets'] = [] 855 self.internal_state['targets'] = []
@@ -865,7 +865,7 @@ class BuildInfoHelper(object):
865 865
866 # this is set for Toaster-triggered builds by localhostbecontroller 866 # this is set for Toaster-triggered builds by localhostbecontroller
867 # via toasterui 867 # via toasterui
868 self.brbe = None 868 self.brbe = brbe
869 869
870 self.project = None 870 self.project = None
871 871