Comment 6 for bug 686735

Revision history for this message
Alexander Belchenko (bialix) wrote : Re: bzr crashed with UnicodeDecodeError in run_subprocess_command()

So, qbzr failing to properly report the error to the main gui process from subprocess. I think the wrong part here is blind `val = unicode(val)` which in fact should explicitly specify the encoding, i.e. val = unicode(val, ENCODING) and maybe even errors handling as 'replace'.

But I'm not sure what is the correct encoding should be here.