diff options
author | Simon Glass <sjg@chromium.org> | 2022-01-29 14:14:05 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2022-02-09 12:26:12 -0700 |
commit | d98006997c342435f906317758292fe97c520b47 (patch) | |
tree | f2ce4ee3b9e37f5a1b0b1f6ec09056a2d68c9437 /tools/patman/checkpatch.py | |
parent | c1aa66e75dbfcacab1fbca0e3e19c09e08d932d5 (diff) | |
download | u-boot-d98006997c342435f906317758292fe97c520b47.tar.gz |
patman: Convert camel case in command.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/checkpatch.py')
-rw-r--r-- | tools/patman/checkpatch.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/patman/checkpatch.py b/tools/patman/checkpatch.py index 8978df25c15..4677a7ae214 100644 --- a/tools/patman/checkpatch.py +++ b/tools/patman/checkpatch.py @@ -213,7 +213,7 @@ def CheckPatch(fname, verbose=False, show_types=False): args = [chk, '--no-tree'] if show_types: args.append('--show-types') - output = command.Output(*args, fname, raise_on_error=False) + output = command.output(*args, fname, raise_on_error=False) return CheckPatchParse(output, verbose) |