diff options
| author | Tom Rini <[email protected]> | 2025-03-04 13:31:54 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-03-04 13:32:15 -0600 |
| commit | 986ab810fa2cb095f5617349baa5c88d83cffc46 (patch) | |
| tree | 4933fb7e0a01f0b9adb128def2e48a40e2ba9a3a /tools/patman/patchstream.py | |
| parent | 9943015f1b39fcb2de16ee72f1599c342620c561 (diff) | |
| parent | 3d094ce28a22690c3d672988af5f161310822603 (diff) | |
Merge patch series "tools: Minor clean-ups for the command library"
Simon Glass <[email protected]> says:
This series adds comments and fixes pylint warnings in the command
library. It also introduces a new, simpler way of running a single
command.
Link: https://lore.kernel.org/r/[email protected]
Diffstat (limited to 'tools/patman/patchstream.py')
| -rw-r--r-- | tools/patman/patchstream.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/patman/patchstream.py b/tools/patman/patchstream.py index 08795c4a0a8..490d382045b 100644 --- a/tools/patman/patchstream.py +++ b/tools/patman/patchstream.py @@ -711,7 +711,7 @@ def get_list(commit_range, git_dir=None, count=None): """ params = gitutil.log_cmd(commit_range, reverse=True, count=count, git_dir=git_dir) - return command.run_pipe([params], capture=True).stdout + return command.run_one(*params, capture=True).stdout def get_metadata_for_list(commit_range, git_dir=None, count=None, series=None, allow_overwrite=False): |
