diff options
author | Tom Rini <trini@konsulko.com> | 2024-09-01 15:56:22 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-09-01 15:56:22 -0600 |
commit | 7fd4bfaa898156a17ee2e45ec1e417536a94ff94 (patch) | |
tree | 150cfd77c72e9b870c305df7e39739d50ad2ef91 /tools/qconfig.py | |
parent | 57949a99b7bd0aa21abbde1ffa7e50e5d9e10a4e (diff) | |
parent | 4597acbd5943a53afb8aeb9595f2ea5a40e1f99f (diff) |
Merge tag 'dm-pull-1sep24' of https://gitlab.denx.de/u-boot/custodians/u-boot-dm
Minor fixes for qconfig and patman
Diffstat (limited to 'tools/qconfig.py')
-rwxr-xr-x | tools/qconfig.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/qconfig.py b/tools/qconfig.py index 7b868c7d72c..8c2fc9efc5f 100755 --- a/tools/qconfig.py +++ b/tools/qconfig.py @@ -1595,7 +1595,7 @@ def imply(args): if flag == 'help' or bad: print("Imply flags: (separate with ',')") for name, info in IMPLY_FLAGS.items(): - print(f' {name:-15s}: {info[1]}') + print(f' {name.ljust(15)}: {info[1]}') return 1 imply_flags |= IMPLY_FLAGS[flag][0] |