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

Unified Diff: client/tools/buildbot_annotated_steps.py

Issue 12434016: Small fix in buildbot_annotated_steps.py (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 9 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/tools/buildbot_annotated_steps.py
diff --git a/client/tools/buildbot_annotated_steps.py b/client/tools/buildbot_annotated_steps.py
index a3fa9861d3d537e5e375d873871d5d2342410927..4eabfeb9857a4c632f57c40cc1d984c5d5edbab0 100755
--- a/client/tools/buildbot_annotated_steps.py
+++ b/client/tools/buildbot_annotated_steps.py
@@ -207,10 +207,10 @@ def main():
name = 'dart-editor' + match.group(1)
is_fyi = True
# Run the old annotated steps script first.
- status = ProcessTools('release', name, version) or status
+ status = ProcessTools('release', name, version)
# In case we're an FYI builder, run 'tools/bots/editor.py' as well
if is_fyi:
- status = ProcessBot(name, 'editor')
+ status = ProcessBot(name, 'editor') or status
elif name.startswith('pub-'):
status = ProcessBot(name, 'pub')
elif name.startswith('vm-android'):
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698