Index: recipe_engine/recipe_api.py |
diff --git a/recipe_engine/recipe_api.py b/recipe_engine/recipe_api.py |
index 0291ec472dc6ff190de0d1c0f779f083b74bc3b0..71ab038a61cb992e7ec97e84762f3eea2eaffd4d 100644 |
--- a/recipe_engine/recipe_api.py |
+++ b/recipe_engine/recipe_api.py |
@@ -1,4 +1,4 @@ |
-# Copyright 2013 The LUCI Authors. All rights reserved. |
+# Copyright 2016 The LUCI Authors. All rights reserved. |
# Use of this source code is governed under the Apache License, Version 2.0 |
# that can be found in the LICENSE file. |
@@ -234,6 +234,7 @@ def infer_composite_step(func): |
except StepFailure as ex: |
agg.add_failure(ex) |
return DeferredResult(None, ex) |
+ _inner.__original = func |
return _inner |
@@ -271,6 +272,7 @@ def composite_step(func): |
except StepFailure as ex: |
agg.add_failure(ex) |
return DeferredResult(None, ex) |
+ _inner.__original = func |
return _inner |