Skip to content

Commit

Permalink
Apply suggested workaround for #18371 (#19226)
Browse files Browse the repository at this point in the history
Fixes undefined
  • Loading branch information
zvecr authored Dec 3, 2022
1 parent 4540f52 commit 82760bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/python/qmk/submodules.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 82760bc

Please sign in to comment.