From e5348ec8f14a07fe192a3d4d535ff8243c046b19 Mon Sep 17 00:00:00 2001 From: Andy Miller Date: Sun, 15 Feb 2015 16:16:27 -0700 Subject: [PATCH] added a space after prompt --- system/src/Grav/Console/Gpm/InstallCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/src/Grav/Console/Gpm/InstallCommand.php b/system/src/Grav/Console/Gpm/InstallCommand.php index 7c2eb0581..c59a5e63e 100644 --- a/system/src/Grav/Console/Gpm/InstallCommand.php +++ b/system/src/Grav/Console/Gpm/InstallCommand.php @@ -220,7 +220,7 @@ class InstallCommand extends Command // Demo content exists, prompt to install it. $this->output->writeln("Attention: ".$package->name . " contains demo content"); $helper = $this->getHelper('question'); - $question = new ConfirmationQuestion('Do you wish to install this demo content? (DANGER: May merge or overwrite existing user data) [y|N]', false); + $question = new ConfirmationQuestion('Do you wish to install this demo content? (DANGER: May merge or overwrite existing user data) [y|N] ', false); if (!$helper->ask($this->input, $this->output, $question)) { $this->output->writeln(" '- Skipped! ");