summaryrefslogtreecommitdiffstats
path: root/lib/python
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2020-12-24 02:37:19 +0000
committerQMK Bot <hello@qmk.fm>2020-12-24 02:37:19 +0000
commit7771e544ac0a3344cc8125292b31de8c52f7d4f1 (patch)
tree15f8ae29886e89332decf33c709e4f6a8400dc6e /lib/python
parent5437c0af6efa1923d3ed04998d65d42a21dca76e (diff)
parent6a292e11d3faddbdbed8175a97aaed00a3469afa (diff)
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/qmk/cli/fileformat.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/qmk/cli/fileformat.py b/lib/python/qmk/cli/fileformat.py
index db8e13f109..112d8d59da 100644
--- a/lib/python/qmk/cli/fileformat.py
+++ b/lib/python/qmk/cli/fileformat.py
@@ -9,5 +9,5 @@ import subprocess
def fileformat(cli):
"""Run several general formatting commands.
"""
- dos2unix = subprocess.run(['bash', '-c', 'git ls-files -z | xargs -0 dos2unix'])
+ dos2unix = subprocess.run(['bash', '-c', 'git ls-files -z | xargs -0 dos2unix'], stdout=subprocess.DEVNULL)
return dos2unix.returncode