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

Unified Diff: scripts/slave/annotated_run.py

Issue 17635005: Make blink_trybot recipe work on windows (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Fix presubmit + move polyfill (retry) Created 7 years, 6 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: scripts/slave/annotated_run.py
diff --git a/scripts/slave/annotated_run.py b/scripts/slave/annotated_run.py
index fb4d7c94821f5766fb07ad8b6d2f9bbece6b46e8..8cd3947079da755f23f125b98a21a31460efd82b 100755
--- a/scripts/slave/annotated_run.py
+++ b/scripts/slave/annotated_run.py
@@ -61,13 +61,15 @@ cease calling the generator and move on to the next item in iterable_of_things.
'failed' is a boolean representing if the build is in a 'failed' state.
"""
-import collections
import inspect
import optparse
import os
import subprocess
import sys
+import common.python26_polyfill # pylint: disable=W0611
+import collections # Import after polyfill to get OrderedDict on 2.6
+
from common import annotator
from common import chromium_utils
from slave import recipe_api

Powered by Google App Engine
This is Rietveld 408576698