| Index: recipe_engine/run.py
 | 
| diff --git a/recipe_engine/run.py b/recipe_engine/run.py
 | 
| index 1b2710a92ffb3500ce441237133d15189fe2344f..5f671fd88b54e6610f2d354e60878185f9f2a10f 100644
 | 
| --- a/recipe_engine/run.py
 | 
| +++ b/recipe_engine/run.py
 | 
| @@ -366,7 +366,7 @@ class RecipeEngine(object):
 | 
|      Returns:
 | 
|        A StepData object containing the result of running the step.
 | 
|      """
 | 
| -    step_config = recipe_api._make_step_config(**step_dict)
 | 
| +    step_config = recipe_api.StepConfig.create(**step_dict)
 | 
|      with util.raises((recipe_api.StepFailure, OSError),
 | 
|                       self._step_runner.stream_engine):
 | 
|        step_result = None
 | 
| 
 |