Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH 0/1] send-error-report: decode response from server
@ 2018-06-12  8:39 Robert Yang
  2018-06-12  8:39 ` [PATCH 1/1] " Robert Yang
  0 siblings, 1 reply; 2+ messages in thread
From: Robert Yang @ 2018-06-12  8:39 UTC (permalink / raw)
  To: openembedded-core

The following changes since commit 23f15c63777020f5d43b070a1eb2bcf246c19ff8:

  rpm: Fix patch to ensure variables aren't used uninitialised (2018-06-07 08:52:13 +0100)

are available in the git repository at:

  git://git.openembedded.org/openembedded-core-contrib rbt/error_report
  http://cgit.openembedded.org/openembedded-core-contrib/log/?h=rbt/error_report

Robert Yang (1):
  send-error-report: decode response from server

 scripts/send-error-report | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-- 
2.7.4



^ permalink raw reply	[flat|nested] 2+ messages in thread

* [PATCH 1/1] send-error-report: decode response from server
  2018-06-12  8:39 [PATCH 0/1] send-error-report: decode response from server Robert Yang
@ 2018-06-12  8:39 ` Robert Yang
  0 siblings, 0 replies; 2+ messages in thread
From: Robert Yang @ 2018-06-12  8:39 UTC (permalink / raw)
  To: openembedded-core

Fixed:
b'Your entry can be found here: http://<snip>'

Now looks like:
Your entry can be found here: http://<snip>

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
 scripts/send-error-report | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/send-error-report b/scripts/send-error-report
index 15b5e84..cd2e7f4 100755
--- a/scripts/send-error-report
+++ b/scripts/send-error-report
@@ -143,7 +143,7 @@ def send_data(data, args):
         logging.error(e.reason)
         sys.exit(1)
 
-    print(response.read())
+    print(response.read().decode('utf-8'))
 
 
 if __name__ == '__main__':
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2018-06-12  8:29 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-06-12  8:39 [PATCH 0/1] send-error-report: decode response from server Robert Yang
2018-06-12  8:39 ` [PATCH 1/1] " Robert Yang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox