Re: [U-Boot] [PATCH v2 05/10] patman: Decode stdout/stderr as utf8, be python 3.x safe

2016-10-05 Thread Simon Glass
Hi Paul, On 27 September 2016 at 09:03, Paul Burton wrote: > In python 3.x reading stdout or stdin will produce a bytestring rather > than a string. Decode it in CommunicateFilter such that the rest of the > code can continue to deal with strings. This works fine with

[U-Boot] [PATCH v2 05/10] patman: Decode stdout/stderr as utf8, be python 3.x safe

2016-09-27 Thread Paul Burton
In python 3.x reading stdout or stdin will produce a bytestring rather than a string. Decode it in CommunicateFilter such that the rest of the code can continue to deal with strings. This works fine with python 2.x too. Signed-off-by: Paul Burton Acked-by: Simon Glass