summaryrefslogtreecommitdiff
path: root/tools/patman/patchstream.py
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2025-03-04 13:31:54 -0600
committerTom Rini <trini@konsulko.com>2025-03-04 13:32:15 -0600
commit986ab810fa2cb095f5617349baa5c88d83cffc46 (patch)
tree4933fb7e0a01f0b9adb128def2e48a40e2ba9a3a /tools/patman/patchstream.py
parent9943015f1b39fcb2de16ee72f1599c342620c561 (diff)
parent3d094ce28a22690c3d672988af5f161310822603 (diff)
Merge patch series "tools: Minor clean-ups for the command library"
Simon Glass <sjg@chromium.org> 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/20250203162704.627469-1-sjg@chromium.org
Diffstat (limited to 'tools/patman/patchstream.py')
-rw-r--r--tools/patman/patchstream.py2
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):