From 90fb44122bff415d02aa4e99505a41b666056c69 Mon Sep 17 00:00:00 2001 From: Eric Lippmann Date: Tue, 30 Dec 2014 15:55:14 +0100 Subject: [PATCH] cli/setup: Do not translate \n again --- modules/setup/application/clicommands/ConfigCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/setup/application/clicommands/ConfigCommand.php b/modules/setup/application/clicommands/ConfigCommand.php index 1999764c9..282590872 100644 --- a/modules/setup/application/clicommands/ConfigCommand.php +++ b/modules/setup/application/clicommands/ConfigCommand.php @@ -79,7 +79,7 @@ class ConfigCommand extends Command )); } - printf($this->translate("Successfully created configuration directory at: %s\n"), $configDir); + printf($this->translate('Successfully created configuration directory %s') . PHP_EOL, $configDir); } /**