1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-06-10 03:02:20 +00:00

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
No known key found for this signature in database
GPG Key ID: 1D7EDBF64E428281

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
import argparse
import os
@ -116,7 +116,7 @@ def get_changed_files(git_bin, excludes, file_extensions):
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.
"""
if len(changed_files) == 0: