Re: [PATCH] tools: hv: lsvmbus: change shebang to use python3

2024-07-02 Thread Anthony Nandaa
Sure, the script is compatible with Python3. I have tested it with the two command options (-v, -vv) and runs okay. Also, I have run it through the ast module [1] just to make sure that there are no any syntax issues. Thanks for taking a look! [1] https://docs.python.org/3/library/ast.html

Re: [PATCH] tools: hv: lsvmbus: change shebang to use python3

2024-07-02 Thread Anthony Nandaa
On Tue, 2 Jul 2024 at 06:15, Michael Kelley wrote: > > From: Anthony Nandaa Sent: Monday, July 1, 2024 1:36 AM > > > > This patch updates the shebang in the lsvmbus tool to use python3 > > instead of python. The change is necessary because Python 2 has > > reached its end of life as of January

RE: [PATCH] tools: hv: lsvmbus: change shebang to use python3

2024-07-01 Thread Michael Kelley
From: Anthony Nandaa Sent: Monday, July 1, 2024 1:36 AM > > This patch updates the shebang in the lsvmbus tool to use python3 > instead of python. The change is necessary because Python 2 has > reached its end of life as of January 1, 2020, and is no longer > maintained[1]. Many modern systems

Re: [PATCH] tools: hv: lsvmbus: change shebang to use python3

2024-07-01 Thread Wei Liu
On Mon, Jul 01, 2024 at 08:35:55AM +, Anthony Nandaa wrote: > This patch updates the shebang in the lsvmbus tool to use python3 > instead of python. The change is necessary because Python 2 has > reached its end of life as of January 1, 2020, and is no longer > maintained[1]. Many modern

[PATCH] tools: hv: lsvmbus: change shebang to use python3

2024-07-01 Thread Anthony Nandaa
This patch updates the shebang in the lsvmbus tool to use python3 instead of python. The change is necessary because Python 2 has reached its end of life as of January 1, 2020, and is no longer maintained[1]. Many modern systems do not have python pointing to Python 2, and instead use python3. By