| Index: chrome/test/chromedriver/run_buildbot_steps.py
|
| diff --git a/chrome/test/chromedriver/run_buildbot_steps.py b/chrome/test/chromedriver/run_buildbot_steps.py
|
| index 276b0c3982ed213a2ff3bce6f9a68585a02e7ab4..dd1a3714713285524bc72bb0dba642bdc2ae9846 100755
|
| --- a/chrome/test/chromedriver/run_buildbot_steps.py
|
| +++ b/chrome/test/chromedriver/run_buildbot_steps.py
|
| @@ -390,6 +390,8 @@ def _GetSVNRevisionFromGitHash(snapshot_hashcode):
|
| response = urllib2.urlopen(json_url)
|
| except urllib2.HTTPError as error:
|
| util.PrintAndFlush('HTTP Error %d' % error.getcode())
|
| + except urllib2.URLError as error:
|
| + util.PrintAndFlush('URL Error %s' % error.message)
|
| return None
|
| data = json.loads(response.read()[4:])
|
| if 'message' in data:
|
|
|