Skip to content

Commit 770f594

Browse files
authored
Merge pull request #120 from mapbox/explicit_python_version
Use explicit python version to match script syntax.
2 parents 0619a16 + 93dc255 commit 770f594

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

scripts/generate_compile_commands.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def generate():
3333
"command": line.strip(),
3434
"file": os.path.normpath(os.path.join(build_dir,match.group(2)))
3535
})
36-
print json.dumps(compile_commands,indent=4)
36+
print(json.dumps(compile_commands,indent=4))
3737

3838
if __name__ == '__main__':
39-
generate()
39+
generate()

0 commit comments

Comments
 (0)