This commit is contained in:
Maxim Muzafarov 2026-07-29 13:36:32 +08:00 committed by GitHub
commit 64c57a8a19
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -1035,7 +1035,7 @@ class Shell(cmd.Cmd):
# print row data
for row in formatted_values:
line = ' | '.join(col.rjust(w, color=self.color) for (col, w) in zip(row, widths))
line = ' | '.join(col.ljust(w, color=self.color) for (col, w) in zip(row, widths))
self.writeresult(' ' + line)
if tty: