Re: [OE-core] [PATCH] classes/buildhistory: fix expansion of escape sequences

2014-02-05 Thread Paul Eggleton
On Wednesday 05 February 2014 11:26:56 Saul Wold wrote: > There still might be an issue: > > ERROR: Error executing a python function in > > /srv/hdd/poky/meta/recipes-support/ca-certificates/ca-certificates_201306 > > 10.bb: > > > > The stack trace of python calls that resulted in this exception/

Re: [OE-core] [PATCH] classes/buildhistory: fix expansion of escape sequences

2014-02-05 Thread Saul Wold
On 01/25/2014 02:10 PM, Khem Raj wrote: Thanks for fixing it. Looks correct to me There still might be an issue: ERROR: Error executing a python function in /srv/hdd/poky/meta/recipes-support/ca-certificates/ca-certificates_20130610.bb: The stack trace of python calls that resulted in this

Re: [OE-core] [PATCH] classes/buildhistory: fix expansion of escape sequences

2014-01-25 Thread Khem Raj
Thanks for fixing it. Looks correct to me Acked-by: Khem Raj On Sat, Jan 25, 2014 at 1:25 PM, Paul Eggleton wrote: > OE-Core commit 259b8718a31b886f8a158aeb5de164840c9a28b2 fixed UTF-8 > errors but broke decoding of escape sequences in strings (e.g. > pkg_postinst scripts had \n \t in them inst

[OE-core] [PATCH] classes/buildhistory: fix expansion of escape sequences

2014-01-25 Thread Paul Eggleton
OE-Core commit 259b8718a31b886f8a158aeb5de164840c9a28b2 fixed UTF-8 errors but broke decoding of escape sequences in strings (e.g. pkg_postinst scripts had \n \t in them instead of newlines and tabs.) We need a second call to decode() here as specifying 'string_escape' as the second parameter won't