diff --git a/pylib/cqlshlib/cqlshmain.py b/pylib/cqlshlib/cqlshmain.py index 519bd2cd7f..8c181a1c5d 100755 --- a/pylib/cqlshlib/cqlshmain.py +++ b/pylib/cqlshlib/cqlshmain.py @@ -1098,7 +1098,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: