[ticket/12039] Do not colour returned value in get command

PHPBB3-12039
This commit is contained in:
Joas Schilling 2014-01-08 23:56:50 +01:00
parent 98200161fc
commit 52c452c768

View file

@ -34,7 +34,7 @@ class get extends command
if (isset($this->config[$key])) if (isset($this->config[$key]))
{ {
$output->writeln("<info>{$this->config[$key]}</info>"); $output->writeln($this->config[$key]);
} }
else else
{ {