Re: [U-Boot] [PATCH v2 02/10] patman: Make print statements python 3.x safe

2016-10-05 Thread Simon Glass
On 27 September 2016 at 09:03, Paul Burton wrote: > In python 3.x, print must be used as a function call. Convert all print > statements to the function call style, importing from __future__ where > we print with no trailing newline or print to a file object. > > Signed-off-by: Paul Burton > Acke

[U-Boot] [PATCH v2 02/10] patman: Make print statements python 3.x safe

2016-09-27 Thread Paul Burton
In python 3.x, print must be used as a function call. Convert all print statements to the function call style, importing from __future__ where we print with no trailing newline or print to a file object. Signed-off-by: Paul Burton Acked-by: Simon Glass --- Changes in v2: None tools/patman/che