Commit 22b2ec72 authored by scottmg@chromium.org's avatar scottmg@chromium.org

Use sys.exit rather than raise SystemExit

TBR=iannucci@chromium.org
R=iannucci@google.com

Review URL: https://codereview.chromium.org/148523009

git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@247469 0039d316-1c4b-4281-b951-d872f2087c98
parent 79231296
......@@ -93,7 +93,7 @@ def Download(url, local_path):
sys.stdout.flush()
sys.stdout.write('\n')
if content_length and content_length != bytes_read:
raise SystemExit('Got incorrect number of bytes downloading %s' % url)
sys.exit('Got incorrect number of bytes downloading %s' % url)
def ExtractIso(iso_path):
......@@ -156,7 +156,7 @@ def DownloadSDK8():
return standalone_path
count += 1
sys.stdout.write('Windows 8 SDK failed to download, retrying.\n')
raise SystemExit("After multiple retries, couldn't download Win8 SDK")
sys.exit('After multiple retries, couldn\'t download Win8 SDK')
def DownloadUsingGsutil(filename):
......@@ -168,7 +168,7 @@ def DownloadUsingGsutil(filename):
download_from_google_storage.GSUTIL_DEFAULT_PATH, boto_path=None)
code = gsutil.call('cp', 'gs://chrome-wintoolchain/' + filename, target_path)
if code != 0:
raise SystemExit('gsutil failed')
sys.exit('gsutil failed')
return target_path
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment