| Index: third_party/WebKit/Tools/Scripts/webkitpy/common/net/git_cl.py
|
| diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/common/net/git_cl.py b/third_party/WebKit/Tools/Scripts/webkitpy/common/net/git_cl.py
|
| index c6e3a73ea46fae833839e3ece614d2fa8056c24b..d091f40bff03c22c3f12ff3e0e7fed6ec7efb115 100644
|
| --- a/third_party/WebKit/Tools/Scripts/webkitpy/common/net/git_cl.py
|
| +++ b/third_party/WebKit/Tools/Scripts/webkitpy/common/net/git_cl.py
|
| @@ -8,11 +8,8 @@ The git-cl tool is responsible for communicating with Rietveld, Gerrit,
|
| and Buildbucket to manage changelists and try jobs associated with them.
|
| """
|
|
|
| -import logging
|
| import time
|
|
|
| -_log = logging.getLogger(__name__)
|
| -
|
|
|
| class GitCL(object):
|
|
|
| @@ -37,7 +34,7 @@ class GitCL(object):
|
| # TODO(qyearsley): Add a time-out to avoid infinite looping.
|
| while True:
|
| time.sleep(poll_delay_seconds)
|
| - _log.info('Waiting for results.')
|
| + print 'Waiting for results.'
|
| out = self.run(['try-results'])
|
| results = self.parse_try_job_results(out)
|
| if results.get('Started') or results.get('Scheduled'):
|
|
|