Skip to content

Commit

Permalink
Merge pull request #959 from Vinai/ascii-dash-in-error
Browse files Browse the repository at this point in the history
Replace UTF8 'en dash' with minus in error message
  • Loading branch information
vpelipenko committed Jan 13, 2015
2 parents ad1f373 + a603459 commit b480553
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public function aroundDispatch(
if ($errors) {
$formattedErrors = $this->formatErrors($errors);
throw new \Magento\Framework\Module\Exception(
'Please update your database: Run "php f index.php update" from the Magento root/setup directory.'
'Please update your database: Run "php -f index.php update" from the Magento root/setup directory.'
. PHP_EOL . 'The following modules are outdated:' . PHP_EOL . implode(PHP_EOL, $formattedErrors)
);
} else {
Expand Down

0 comments on commit b480553

Please sign in to comment.