Browse Source

Apply suggested workaround for #18371 (#19226)

Fixes undefined
Joel Challis 3 years ago
parent
commit
82760bcea6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/python/qmk/submodules.py

+ 1 - 1
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