summaryrefslogtreecommitdiffstats
path: root/scripts/send-error-report
diff options
context:
space:
mode:
authorMartin Jansa <martin.jansa@gmail.com>2014-04-02 12:25:37 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-04-04 11:53:51 +0100
commitd2c395a618c4bbdd8a52a136f8b3822f448200d7 (patch)
tree13969ab3c9e972cf8155b40732cd05bd55dd6877 /scripts/send-error-report
parentde4d7c30629ffcf0b252a5e9da66cb84f000bc5f (diff)
downloadpoky-d2c395a618c4bbdd8a52a136f8b3822f448200d7.tar.gz
send-error-report: show response
* useful when debuging why it was refused by server (From OE-Core rev: 0b8ff2231a36755a71d8bf8c7854364d69ef2df8) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/send-error-report')
-rwxr-xr-xscripts/send-error-report6
1 files changed, 4 insertions, 2 deletions
diff --git a/scripts/send-error-report b/scripts/send-error-report
index 0d85776340..8eea3cfebb 100755
--- a/scripts/send-error-report
+++ b/scripts/send-error-report
@@ -53,9 +53,11 @@ def sendData(json_file, server):
53 print response.status, response.reason 53 print response.status, response.reason
54 res = response.read() 54 res = response.read()
55 if response.status == 200: 55 if response.status == 200:
56 print res 56 print(res)
57 else: 57 else:
58 print("There was a problem submiting your data") 58 print("There was a problem submiting your data, response written in %s.response.html" % json_file)
59 with open("%s.response.html" % json_file, "w") as f:
60 f.write(res)
59 conn.close() 61 conn.close()
60 except: 62 except:
61 print("Server connection failed") 63 print("Server connection failed")