aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/testing_commands.py
diff options
context:
space:
mode:
authorPaul Rouget <me@paulrouget.com>2019-10-30 11:00:41 +0100
committerPaul Rouget <me@paulrouget.com>2019-11-04 07:05:06 +0100
commit36c16692152b6bc66122c26fcd90e82469020a21 (patch)
tree3abb93ed6c521c745a3640a0286834d65dade00b /python/servo/testing_commands.py
parent70823e30320ea1be2fce2d9b948438862e57eb65 (diff)
downloadservo-36c16692152b6bc66122c26fcd90e82469020a21.tar.gz
servo-36c16692152b6bc66122c26fcd90e82469020a21.zip
Format support/hololens/
Diffstat (limited to 'python/servo/testing_commands.py')
-rw-r--r--python/servo/testing_commands.py2
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