Merge pull request #1312 from jooola/fix/shebangs

Fix python shebangs
This commit is contained in:
Kyle Robbertze 2021-08-24 15:43:04 +02:00 committed by GitHub
commit 3babb458e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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