Bug 1135984 - Fix typo which made Context.__init__ set the unused executed_time attribute. r=gps

This commit is contained in:
Mike Hommey 2015-02-23 15:38:31 +09:00
Родитель 19ec96fa61
Коммит cd59da5d48
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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):