diff options
author | Simon Glass <sjg@chromium.org> | 2022-01-29 14:14:08 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2022-02-09 12:26:12 -0700 |
commit | 208f01b0f771c2724fa1404182189b7f624cc6e0 (patch) | |
tree | 625c1e6ae23fbb87ee59702a9d0d29d69f709355 /tools/patman/command.py | |
parent | a3eeadfeb9f3aaa03c716d7aedbd98bb49c88172 (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.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/patman/command.py b/tools/patman/command.py index c848aa1987..24358784f2 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() |