Chromium Code Reviews| Index: scripts/slave/recipe_api.py |
| diff --git a/scripts/slave/recipe_api.py b/scripts/slave/recipe_api.py |
| index 6af63237d48ab5e610f71f7a4dbab450e2d49ec3..4ef727170ae3435f5a5cab3c2682a9290c1d02b3 100644 |
| --- a/scripts/slave/recipe_api.py |
| +++ b/scripts/slave/recipe_api.py |
| @@ -10,6 +10,10 @@ import sys |
| import tempfile |
| +class RecipeAbort(Exception): |
| + pass |
| + |
| + |
| class Placeholder(object): |
| """Base class for json placeholders. Do not use directly.""" |
| def render(self, test_data): # pragma: no cover |