Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(645)

Unified Diff: recipe_engine/run.py

Issue 2332833003: Add better documentation, trigger namedtuple. (Closed)
Patch Set: More cleanups. Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698