diff options
author | Tom Rini <trini@konsulko.com> | 2024-09-02 14:13:57 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-09-02 14:13:57 -0600 |
commit | 8c069df8dd727bf78426aaa4604750ab93732f04 (patch) | |
tree | 17ac5bea9d7200864aec9a5f531caed0a3e4e3ec /tools/qconfig.py | |
parent | f0ec3e608902ca1f573e5b7017da6bc804483f55 (diff) | |
parent | 1312faac5f52d27cfb45dfe1a5a93a2944ca5c21 (diff) |
Merge tag 'v2024.10-rc4' into next
Prepare v2024.10-rc4
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] |