? includes/table.inc Index: commands/core/variable.drush.inc =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/drush/commands/core/variable.drush.inc,v retrieving revision 1.5 diff -u -p -r1.5 variable.drush.inc --- commands/core/variable.drush.inc 19 Oct 2009 17:38:44 -0000 1.5 +++ commands/core/variable.drush.inc 3 Nov 2009 13:11:39 -0000 @@ -101,7 +101,7 @@ function drush_variable_variable_get() { elseif (is_string($value)) { $value = '"' . $value . '"'; } - elseif (is_array($value)) { + elseif (is_array($value) || is_object($value)) { $value = print_r($value, TRUE); } drush_print($name . ': ' . $value);