Skip to content
Snippets Groups Projects
Commit 9ad96982 authored by Simon Glass's avatar Simon Glass
Browse files

patman: Add a missing space in GetMetaDataForList()


Fix this nit to keep the code consistent.

Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
Reviewed-by: default avatarJoe Hershberger <joe.hershberger@ni.com>
parent 9404fc85
No related branches found
No related tags found
No related merge requests found
...@@ -376,7 +376,7 @@ def GetMetaDataForList(commit_range, git_dir=None, count=None, ...@@ -376,7 +376,7 @@ def GetMetaDataForList(commit_range, git_dir=None, count=None,
if not series: if not series:
series = Series() series = Series()
series.allow_overwrite = allow_overwrite series.allow_overwrite = allow_overwrite
params = gitutil.LogCmd(commit_range,reverse=True, count=count, params = gitutil.LogCmd(commit_range, reverse=True, count=count,
git_dir=git_dir) git_dir=git_dir)
stdout = command.RunPipe([params], capture=True).stdout stdout = command.RunPipe([params], capture=True).stdout
ps = PatchStream(series, is_log=True) ps = PatchStream(series, is_log=True)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment