sb: Use shebang env python

Closes #4037
This commit is contained in:
Chris Johns
2020-08-25 21:21:50 +10:00
parent 40af487dfc
commit 650c6f9933
46 changed files with 469 additions and 713 deletions

View File

@@ -33,17 +33,17 @@ import sys
import textwrap
try:
import build
import check
import error
import log
import mailer
import options
import path
import reports
import shell
import sources
import version
from . import build
from . import check
from . import error
from . import log
from . import mailer
from . import options
from . import path
from . import reports
from . import shell
from . import sources
from . import version
except KeyboardInterrupt:
print('abort: user terminated', file = sys.stderr)
sys.exit(1)