summaryrefslogtreecommitdiffstats
path: root/lib/python
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2022-12-03 00:42:54 +0000
committerGitHub <noreply@github.com>2022-12-03 11:42:54 +1100
commit82760bcea65d1f9e8f39aaca06f1d3b4e22a1f64 (patch)
tree2448c2278c6096a605707b7b751fa2096da77166 /lib/python
parent4540f52e98ccf6a04884f3d4e27ef87afb37cd3f (diff)
Apply suggested workaround for #18371 (#19226)
Fixes undefined
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/qmk/submodules.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/qmk/submodules.py b/lib/python/qmk/submodules.py
index 52efa602a0..d37ca5e644 100644
--- a/lib/python/qmk/submodules.py
+++ b/lib/python/qmk/submodules.py
@@ -40,7 +40,7 @@ def status():
else:
raise ValueError('Unknown `git submodule status` sha-1 prefix character: "%s"' % status)
- submodule_logs = cli.run(['git', 'submodule', '-q', 'foreach', 'git --no-pager log --pretty=format:"$sm_path%x01%h%x01%ad%x01%s%x0A" --date=iso -n1'])
+ submodule_logs = cli.run(['git', 'submodule', '-q', 'foreach', 'git --no-pager log --no-show-signature --pretty=format:"$sm_path%x01%h%x01%ad%x01%s%x0A" --date=iso -n1'])
for log_line in submodule_logs.stdout.split('\n'):
if not log_line:
continue