Fix python shebangs

Some systems only provide a versionned `python3` executable.
This commit is contained in:
jo 2021-08-24 15:33:56 +02:00
parent e675647a41
commit abc6420c05
5 changed files with 8 additions and 5 deletions

View File

@ -1,4 +1,5 @@
#!/usr/bin/python
#!/usr/bin/env python3
import runpy
# Run the liquidsoap python module

View File

@ -1,4 +1,5 @@
#!/usr/bin/python
#!/usr/bin/env python3
import runpy
runpy.run_module("pypo", run_name="__main__")

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
import traceback

View File

@ -1,4 +1,5 @@
#!/usr/bin/python
#!/usr/bin/env python3
import json
import logging
import os

View File

@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python3
import argparse
import sys