summaryrefslogtreecommitdiff
path: root/tools/patman/command.py
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2022-01-29 14:14:08 -0700
committerSimon Glass <sjg@chromium.org>2022-02-09 12:26:12 -0700
commit208f01b0f771c2724fa1404182189b7f624cc6e0 (patch)
tree625c1e6ae23fbb87ee59702a9d0d29d69f709355 /tools/patman/command.py
parenta3eeadfeb9f3aaa03c716d7aedbd98bb49c88172 (diff)
patman: Convert camel case in cros_subprocess.py
Convert this file to snake case and update all files which use it. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/patman/command.py')
-rw-r--r--tools/patman/command.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/patman/command.py b/tools/patman/command.py
index c848aa19879..24358784f26 100644
--- a/tools/patman/command.py
+++ b/tools/patman/command.py
@@ -108,7 +108,7 @@ def run_pipe(pipe_list, infile=None, outfile=None,
if capture:
result.stdout, result.stderr, result.combined = (
- last_pipe.CommunicateFilter(output_func))
+ last_pipe.communicate_filter(output_func))
if result.stdout and oneline:
result.output = result.stdout.rstrip(b'\r\n')
result.return_code = last_pipe.wait()