From 55f887dc50c66626f9cb187132d36f886904bdb1 Mon Sep 17 00:00:00 2001 From: scribu Date: Tue, 30 Apr 2013 17:21:48 +0300 Subject: [PATCH] shell: use WP_CLI::print_value(), since we don't want to colorize the output --- php/commands/shell.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/php/commands/shell.php b/php/commands/shell.php index 02daaed9..d379d93a 100644 --- a/php/commands/shell.php +++ b/php/commands/shell.php @@ -36,7 +36,7 @@ class Shell_Command extends \WP_CLI_Command { eval( $line ); - \WP_CLI::line( var_export( $_, false ) ); + \WP_CLI::print_value( var_export( $_, false ) ); } } } -- 2.11.0