diff options
author | Paul Rouget <me@paulrouget.com> | 2019-10-30 11:00:41 +0100 |
---|---|---|
committer | Paul Rouget <me@paulrouget.com> | 2019-11-04 07:05:06 +0100 |
commit | 36c16692152b6bc66122c26fcd90e82469020a21 (patch) | |
tree | 3abb93ed6c521c745a3640a0286834d65dade00b /python/servo/testing_commands.py | |
parent | 70823e30320ea1be2fce2d9b948438862e57eb65 (diff) | |
download | servo-36c16692152b6bc66122c26fcd90e82469020a21.tar.gz servo-36c16692152b6bc66122c26fcd90e82469020a21.zip |
Format support/hololens/
Diffstat (limited to 'python/servo/testing_commands.py')
-rw-r--r-- | python/servo/testing_commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/testing_commands.py b/python/servo/testing_commands.py index c92449cd047..53e7c3c901f 100644 --- a/python/servo/testing_commands.py +++ b/python/servo/testing_commands.py @@ -810,7 +810,7 @@ def setup_clangfmt(all_files): return False, None, None gitcmd = ['git', 'ls-files'] if not all_files: - gitcmd.append('-m') + gitcmd.append('-m') gitfiles = subprocess.check_output(gitcmd + CLANGFMT_CPP_DIRS).splitlines() filtered = [line for line in gitfiles if line.endswith(".h") or line.endswith(".cpp")] return True, cmd, filtered |