| 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
|
|
|