Re: [OE-core] [PATCH] patch.bbclass: don't repr() the exception, use str()

2021-11-04 Thread Jose Quaresma
Richard Purdie escreveu no dia terça, 2/11/2021 à(s) 12:36: > On Tue, 2021-11-02 at 12:26 +, Ross Burton wrote: > > repr() results in formatting characters such as extra quotation marks > > which are pointless. > > > > Signed-off-by: Ross Burton > > --- > > meta/classes/patch.bbclass | 2 +-

Re: [OE-core] [PATCH] patch.bbclass: don't repr() the exception, use str()

2021-11-02 Thread Richard Purdie
On Tue, 2021-11-02 at 12:26 +, Ross Burton wrote: > repr() results in formatting characters such as extra quotation marks > which are pointless. > > Signed-off-by: Ross Burton > --- > meta/classes/patch.bbclass | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/meta/cl

[OE-core] [PATCH] patch.bbclass: don't repr() the exception, use str()

2021-11-02 Thread Ross Burton
repr() results in formatting characters such as extra quotation marks which are pointless. Signed-off-by: Ross Burton --- meta/classes/patch.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/classes/patch.bbclass b/meta/classes/patch.bbclass index 8de7025491..079ee