This commit is contained in:
Maxim Muzafarov 2026-08-01 14:12:44 +03:00 committed by GitHub
commit 4b30aa204a
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: