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

@@ -34,17 +34,17 @@ import pprint
pp = pprint.PrettyPrinter(indent = 2)
try:
import build
import check
import config
import error
import git
import log
import options
import path
import setbuilder
import sources
import version
from . import build
from . import check
from . import config
from . import error
from . import git
from . import log
from . import options
from . import path
from . import setbuilder
from . import sources
from . import version
except KeyboardInterrupt:
print('user terminated', file = sys.stderr)
sys.exit(1)