| Index: scripts/slave/recipe_modules/step_history/api.py
|
| diff --git a/scripts/slave/recipe_modules/step_history/api.py b/scripts/slave/recipe_modules/step_history/api.py
|
| index 9875dc712bc3056c1e0b507489e90118e09831bd..788384a1ac61df31e99a131d78c1777bfe3c8e2e 100644
|
| --- a/scripts/slave/recipe_modules/step_history/api.py
|
| +++ b/scripts/slave/recipe_modules/step_history/api.py
|
| @@ -18,6 +18,9 @@ class StepHistoryApi(recipe_api.RecipeApi, collections.Mapping):
|
|
|
| def __init__(self, step_history, **kwargs):
|
| super(StepHistoryApi, self).__init__(**kwargs)
|
| + # step_history is instantiated in annontated_run.py. Recipe engine is
|
| + # responsible for updating it.
|
| + assert isinstance(step_history, collections.OrderedDict)
|
| self._step_history = step_history
|
|
|
| def __getitem__(self, key):
|
|
|