Skip to content

Commit

Permalink
Fix #2920 stray quote mark in string.
Browse files Browse the repository at this point in the history
  • Loading branch information
weitzman committed Sep 1, 2017
1 parent 8070b6c commit cd0c6c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Commands/core/CacheCommands.php
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public function interact($input, $output)
if (empty($input->getArgument('type'))) {
$types = $this->getTypes(drush_has_boostrapped(DRUSH_BOOTSTRAP_DRUPAL_FULL));
$choices = array_combine(array_keys($types), array_keys($types));
$type = $this->io()->choice(dt("'Choose a cache to clear"), $choices, 'all');
$type = $this->io()->choice(dt("Choose a cache to clear"), $choices, 'all');
$input->setArgument('type', $type);
}
}
Expand Down

0 comments on commit cd0c6c2

Please sign in to comment.