Re: [U-Boot] [PATCH] host-tools: use python2 explicitly for shebang

2018-02-04 Thread Simon Glass
Hi Masahiro, On 28 January 2018 at 21:42, Masahiro Yamada wrote: > 2018-01-29 13:26 GMT+09:00 Simon Glass : >> Hi Masahiro, >> >> On 27 January 2018 at 14:28, Masahiro Yamada >> wrote: >>> Hi Simon, >>> >>> >>> 2018-01-27 0:27 GMT+09:00 Simon Glass : Hi Masahiro, On 21 January 201

Re: [U-Boot] [PATCH] host-tools: use python2 explicitly for shebang

2018-01-28 Thread Masahiro Yamada
2018-01-29 13:26 GMT+09:00 Simon Glass : > Hi Masahiro, > > On 27 January 2018 at 14:28, Masahiro Yamada > wrote: >> Hi Simon, >> >> >> 2018-01-27 0:27 GMT+09:00 Simon Glass : >>> Hi Masahiro, >>> >>> On 21 January 2018 at 02:34, Masahiro Yamada >>> wrote: All of these host tools are apparen

Re: [U-Boot] [PATCH] host-tools: use python2 explicitly for shebang

2018-01-28 Thread Simon Glass
Hi Masahiro, On 27 January 2018 at 14:28, Masahiro Yamada wrote: > Hi Simon, > > > 2018-01-27 0:27 GMT+09:00 Simon Glass : >> Hi Masahiro, >> >> On 21 January 2018 at 02:34, Masahiro Yamada >> wrote: >>> All of these host tools are apparently written for Python2, >>> not Python3. >>> >>> Use 'py

Re: [U-Boot] [PATCH] host-tools: use python2 explicitly for shebang

2018-01-27 Thread Masahiro Yamada
Hi Simon, 2018-01-27 0:27 GMT+09:00 Simon Glass : > Hi Masahiro, > > On 21 January 2018 at 02:34, Masahiro Yamada > wrote: >> All of these host tools are apparently written for Python2, >> not Python3. >> >> Use 'python2' in the shebang line according to PEP 394 >> (https://www.python.org/dev/pe

Re: [U-Boot] [PATCH] host-tools: use python2 explicitly for shebang

2018-01-26 Thread Simon Glass
Hi Masahiro, On 21 January 2018 at 02:34, Masahiro Yamada wrote: > All of these host tools are apparently written for Python2, > not Python3. > > Use 'python2' in the shebang line according to PEP 394 > (https://www.python.org/dev/peps/pep-0394/). > > Signed-off-by: Masahiro Yamada > --- > > I s