Commit 9addb1e1 authored by maruel@chromium.org's avatar maruel@chromium.org

Don't ask to upload a stack trace anymore.

The code proved to be robust enough to not do false positive, i.e.
no non-googler stack trace has been uploaded up to date.
So stop wasting users time and just do it.

BUG=none
TEST=none

Review URL: http://codereview.chromium.org/2014012

git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@46992 0039d316-1c4b-4281-b951-d872f2087c98
parent 2f6a0d87
...@@ -15,9 +15,6 @@ import sys ...@@ -15,9 +15,6 @@ import sys
def SendStack(stack, url='http://chromium-status.appspot.com/breakpad'): def SendStack(stack, url='http://chromium-status.appspot.com/breakpad'):
print 'Do you want to send a crash report [y/N]? ',
if sys.stdin.read(1).lower() != 'y':
return
print 'Sending crash report ...' print 'Sending crash report ...'
try: try:
params = { params = {
......
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