Re: [PATCH 01/10] scripts: Explicit usage of Python 3

2020-01-30 Thread Juan Quintela
Philippe Mathieu-Daudé wrote: > Use the program search path to find the Python 3 interpreter. > > Patch created mechanically by running: > > $ sed -i "s,^#\!/usr/bin/\(env\ \)\?python$,#\!/usr/bin/env python3," \ >$(git grep -l 'if __name__.*__main__') > > Reported-by: Vladimir Sementsov

[PATCH 01/10] scripts: Explicit usage of Python 3

2020-01-29 Thread Philippe Mathieu-Daudé
Use the program search path to find the Python 3 interpreter. Patch created mechanically by running: $ sed -i "s,^#\!/usr/bin/\(env\ \)\?python$,#\!/usr/bin/env python3," \ $(git grep -l 'if __name__.*__main__') Reported-by: Vladimir Sementsov-Ogievskiy Suggested-by: Daniel P. Berrangé