Added format.py to Travis config (#236)

This commit is contained in:
Tyler Veness
2016-10-23 21:37:43 -07:00
committed by Peter Johnson
parent 5ca5583fc3
commit fdebdd520a
4 changed files with 19 additions and 4 deletions

View File

@@ -19,7 +19,7 @@ def main():
sys.exit(1)
# Run main format.py script
args = ["python", path + "/format.py"]
args = ["python3", path + "/format.py"]
args.extend(sys.argv[1:])
proc = subprocess.Popen(args)
sys.exit(proc.wait())