Re: [U-Boot] [PATCH v2] patman: fix series-notes handling for buildman

2016-02-25 Thread Simon Glass
On 23 February 2016 at 22:12, Simon Glass wrote: > On 2 February 2016 at 02:24, Albert ARIBAUD wrote: >> A patman series with a 'Series-notes' section causes >> buildman to crash with: >> >> self.series.notes += self.section >> TypeError:

Re: [U-Boot] [PATCH v2] patman: fix series-notes handling for buildman

2016-02-23 Thread Simon Glass
On 2 February 2016 at 02:24, Albert ARIBAUD wrote: > A patman series with a 'Series-notes' section causes > buildman to crash with: > > self.series.notes += self.section > TypeError: cannot concatenate 'str' and 'list' objects > > Fix by initializing

[U-Boot] [PATCH v2] patman: fix series-notes handling for buildman

2016-02-02 Thread Albert ARIBAUD
A patman series with a 'Series-notes' section causes buildman to crash with: self.series.notes += self.section TypeError: cannot concatenate 'str' and 'list' objects Fix by initializing series.notes as a one-element array rather than a scalar. Signed-off-by: Albert ARIBAUD