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)
downloadast2050-yocto-poky-d2c395a618c4bbdd8a52a136f8b3822f448200d7.zip
ast2050-yocto-poky-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 0d85776..8eea3cf 100755
--- a/scripts/send-error-report
+++ b/scripts/send-error-report
@@ -53,9 +53,11 @@ def sendData(json_file, server):
print response.status, response.reason
res = response.read()
if response.status == 200:
- print res
+ print(res)
else:
- print("There was a problem submiting your data")
+ print("There was a problem submiting your data, response written in %s.response.html" % json_file)
+ with open("%s.response.html" % json_file, "w") as f:
+ f.write(res)
conn.close()
except:
print("Server connection failed")
OpenPOWER on IntegriCloud