From cd59da5d48a9b2c4db8dc6009970cba173bb4ea3 Mon Sep 17 00:00:00 2001 From: Mike Hommey Date: Mon, 23 Feb 2015 15:38:31 +0900 Subject: [PATCH] Bug 1135984 - Fix typo which made Context.__init__ set the unused executed_time attribute. r=gps --- python/mozbuild/mozbuild/frontend/context.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/mozbuild/mozbuild/frontend/context.py b/python/mozbuild/mozbuild/frontend/context.py index 368540eb173e..f42653346598 100644 --- a/python/mozbuild/mozbuild/frontend/context.py +++ b/python/mozbuild/mozbuild/frontend/context.py @@ -83,7 +83,7 @@ class Context(KeyedDefaultDict): # a list to be a problem. self._all_paths = [] self.config = config - self.executed_time = 0 + self.execution_time = 0 KeyedDefaultDict.__init__(self, self._factory) def push_source(self, path):