diff --git a/lib/cli/table/Ascii.php b/lib/cli/table/Ascii.php index b2505e6..113c092 100644 --- a/lib/cli/table/Ascii.php +++ b/lib/cli/table/Ascii.php @@ -198,6 +198,7 @@ public function row( array $row ) { } private function padColumn($content, $column) { + $content = str_replace( "\t", ' ', (string) $content ); return $this->_characters['padding'] . Colors::pad( $content, $this->_widths[ $column ], $this->isPreColorized( $column ) ) . $this->_characters['padding']; }