diff --git a/pylib/cqlshlib/cqlshmain.py b/pylib/cqlshlib/cqlshmain.py index c13256dd40..36bf29b350 100755 --- a/pylib/cqlshlib/cqlshmain.py +++ b/pylib/cqlshlib/cqlshmain.py @@ -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: