Disambiguate some python shebang lines to be "python3"

Loonycyborg already uses these tools with Python 3.

The python launcher tool for Windows has magic handling for some shebang lines,
however `#!/bin/env python` isn't recognised without the `/usr`. Had the `/usr`
been included with the old code then these scripts would likely have been run
with Python 2.
https://docs.python.org/dev/using/windows.html#shebang-lines
This commit is contained in:
Steve Cotton 2020-07-29 14:35:54 +02:00
parent c7d0144535
commit c1e4178338
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
#!/bin/env python #!/usr/bin/env python3
import pefile, pathlib, shutil import pefile, pathlib, shutil

View File

@ -1,4 +1,4 @@
#!/bin/env python #!/usr/bin/env python3
import sys, requests, argparse import sys, requests, argparse
from xml.dom import minidom from xml.dom import minidom