diff --git a/src/Composer/Command/RemoveCommand.php b/src/Composer/Command/RemoveCommand.php
index 591548d2a..3779b09e9 100644
--- a/src/Composer/Command/RemoveCommand.php
+++ b/src/Composer/Command/RemoveCommand.php
@@ -75,7 +75,7 @@ EOT
} elseif (isset($composer[$altType][$package])) {
$this->getIO()->writeError(''.$package.' could not be found in '.$type.' but it is present in '.$altType.'');
if ($this->getIO()->isInteractive()) {
- if ($this->getIO()->askConfirmation('Do you want to remove it from '.$altType.' [yes]?', true)) {
+ if ($this->getIO()->askConfirmation('Do you want to remove it from '.$altType.' [yes]? ', true)) {
$json->removeLink($altType, $package);
}
}