summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexandru DAMIAN <alexandru.damian@intel.com>2014-04-02 11:11:29 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-04-05 14:55:18 +0100
commitf4e57f794651c4894600445e843ca9d5e104cd84 (patch)
tree4384603c7afde2f250425e878bbf6a528492385f
parentfb3d1d189f010488a8726872b01313857697751b (diff)
downloadbitbake-f4e57f794651c4894600445e843ca9d5e104cd84.tar.gz
toasterui: avoid variable name conflict
We rename a local variable in as to prevent a conflict with a similary named function parameter. Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com>
-rw-r--r--lib/bb/ui/buildinfohelper.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/bb/ui/buildinfohelper.py b/lib/bb/ui/buildinfohelper.py
index e4d2f1f5a..dd93d0b6c 100644
--- a/lib/bb/ui/buildinfohelper.py
+++ b/lib/bb/ui/buildinfohelper.py
@@ -761,10 +761,10 @@ class BuildInfoHelper(object):
recipe_information = self._get_recipe_information_from_taskfile(fn)
recipe = self.orm_wrapper.get_update_recipe_object(recipe_information)
class MockEvent: pass
- event = MockEvent()
- event.taskname = taskname
- event.taskhash = taskhash
- task_information = self._get_task_information(event,recipe)
+ mevent = MockEvent()
+ mevent.taskname = taskname
+ mevent.taskhash = taskhash
+ task_information = self._get_task_information(mevent,recipe)
task_information['start_time'] = datetime.datetime.now()
task_information['outcome'] = Task.OUTCOME_NA
@@ -780,10 +780,10 @@ class BuildInfoHelper(object):
recipe_information = self._get_recipe_information_from_taskfile(fn)
recipe = self.orm_wrapper.get_update_recipe_object(recipe_information)
class MockEvent: pass
- event = MockEvent()
- event.taskname = taskname
- event.taskhash = taskhash
- task_information = self._get_task_information(event,recipe)
+ mevent = MockEvent()
+ mevent.taskname = taskname
+ mevent.taskhash = taskhash
+ task_information = self._get_task_information(mevent,recipe)
task_information['path_to_sstate_obj'] = sstatefile