Change python version in check script to 3.

This commit is contained in:
Brenden Matthews
2019-10-19 12:10:30 -04:00
parent dae65af726
commit 2f41fb566c

View File

@@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python3
import argparse import argparse
import os import os
@@ -116,7 +116,7 @@ def get_changed_files(git_bin, excludes, file_extensions):
def run_clang_format(clang_format_bin, changed_files): def run_clang_format(clang_format_bin, changed_files):
""" """
Run clang format on a list of files Run clang format on a list of files
@return 0 if formatted correctly. @return 0 if formatted correctly.
""" """
if len(changed_files) == 0: if len(changed_files) == 0: