Skip to content

Commit f12ff1b

Browse files
joachim-nweitzman
authored andcommitted
Fixed config location prompt has an unnecessary full stop, as the framework adds a colon to the prompt. (#3838)
1 parent e6c965b commit f12ff1b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Drupal/Commands/config/ConfigCommands.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ public function interactConfigLabel(InputInterface $input, ConsoleOutputInterfac
427427
$choices = drush_map_assoc(array_keys($config_directories));
428428
unset($choices[CONFIG_ACTIVE_DIRECTORY]);
429429
if (count($choices) >= 2) {
430-
$label = $this->io()->choice('Choose a '. $option_name. '.', $choices);
430+
$label = $this->io()->choice('Choose a '. $option_name, $choices);
431431
$input->setArgument('label', $label);
432432
}
433433
}

0 commit comments

Comments
 (0)