diff options
author | Mark Benvenuto <mark.benvenuto@mongodb.com> | 2016-04-04 16:26:32 -0400 |
---|---|---|
committer | Mark Benvenuto <mark.benvenuto@mongodb.com> | 2016-04-04 16:26:32 -0400 |
commit | 264133830ecae413e451fac1ad3ef2a056c7a3d0 (patch) | |
tree | 27dc472626c7268b989f2c0dbbd7e1558200f711 /buildscripts/clang_format.py | |
parent | 0c287324435952041423d03297248472080c8db3 (diff) | |
download | mongo-264133830ecae413e451fac1ad3ef2a056c7a3d0.tar.gz |
SERVER-19986 clang_format.py format fix
Diffstat (limited to 'buildscripts/clang_format.py')
-rwxr-xr-x | buildscripts/clang_format.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buildscripts/clang_format.py b/buildscripts/clang_format.py index 186492a254a..a9c2e63c203 100755 --- a/buildscripts/clang_format.py +++ b/buildscripts/clang_format.py @@ -517,7 +517,7 @@ def get_files_to_check(): """ repos = get_repos() - valid_files = list(itertools.chain.from_iterable([r.get_candidates() for r in repos])) + valid_files = list(itertools.chain.from_iterable([r.get_candidates(None) for r in repos])) return valid_files |