Hide errors until builder succeeds.

Change-Id: Ifb40e4931c1b0a1d32051d1d4851bca572ef3acf

BUG=7649
TEST=Ran it with fake urls

Review URL: http://codereview.chromium.org/3678004
This commit is contained in:
Chris Sosa 2010-10-12 11:07:28 -07:00
parent 4bec3be90b
commit e695541bc6

View File

@ -10,6 +10,7 @@ import fileinput
import optparse
import os
import sys
import traceback
import urllib
sys.path.append(os.path.join(os.path.dirname(__file__), '../lib'))
@ -212,4 +213,9 @@ def main():
if __name__ == '__main__':
main()
try:
main()
except Exception:
print "Got exception."
traceback.print_exc(file=sys.stdout)