| Index: tools/bots/bot.py
|
| diff --git a/tools/bots/bot.py b/tools/bots/bot.py
|
| index 0d9284b9b2f2270b116f27fe77c4549e63ce6d1e..a050b428e73b927cfe1b93dea90b69bc4d861716 100644
|
| --- a/tools/bots/bot.py
|
| +++ b/tools/bots/bot.py
|
| @@ -86,10 +86,12 @@ class BuildStep(object):
|
|
|
| def __enter__(self):
|
| print '@@@BUILD_STEP %s@@@' % self.name
|
| + sys.stdout.flush()
|
|
|
| def __exit__(self, type, value, traceback):
|
| if value:
|
| print '@@@STEP_FAILURE@@@'
|
| + sys.stdout.flush()
|
| if self.swallow_error and isinstance(value, OSError):
|
| return True
|
|
|
|
|