more python 3 compatibility

This commit is contained in:
Axel Kohlmeyer
2022-02-23 12:30:03 -05:00
parent 5594868ef2
commit 2d7375798f
8 changed files with 69 additions and 67 deletions

View File

@ -14,7 +14,7 @@ sys.path.append(path)
from dump import dump
if len(sys.argv) != 4:
raise StandardError, "Syntax: dumpsort.py oldfile N newfile"
sys.exit("Syntax: dumpsort.py oldfile N newfile")
oldfile = sys.argv[1]
ncolumn = int(sys.argv[2])