[OE-core] [PATCH 5/5] send-error-report: show response

Martin Jansa martin.jansa at gmail.com
Wed Apr 2 12:25:37 UTC 2014


* useful when debuging why it was refused by server

Signed-off-by: Martin Jansa <Martin.Jansa at gmail.com>
---
 scripts/send-error-report | 6 ++++--
 1 file 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")
-- 
1.9.1




More information about the Openembedded-core mailing list