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

@@ -25,11 +25,10 @@ from __future__ import print_function
import os
import error
import execute
import log
import options
import path
from . import error
from . import execute
from . import log
from . import path
class repo:
"""An object to manage a cvs repo."""
@@ -147,6 +146,7 @@ class repo:
if __name__ == '__main__':
import sys
from . import options
opts = options.load(sys.argv, defaults = 'defaults.mc')
ldir = 'cvs-test-rm-me'
c = repo(ldir, opts)