Skip to content

Commit

Permalink
Merge pull request #1335 from arnold-almeida/master
Browse files Browse the repository at this point in the history
Use error() instead of err() for bevity
  • Loading branch information
markstory committed Jun 7, 2013
2 parents f14c559 + dacf7e0 commit b75449d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Cake/Console/Command/Task/FixtureTask.php
Expand Up @@ -214,7 +214,7 @@ public function bake($model, $useTable = false, $importOptions = array()) {
$this->_Schema = new CakeSchema();
$data = $this->_Schema->read(array('models' => false, 'connection' => $this->connection));
if (!isset($data['tables'][$useTable])) {
$this->err('Could not find your selected table ' . $useTable);
$this->error('Could not find your selected table ' . $useTable);
return false;
}

Expand Down

0 comments on commit b75449d

Please sign in to comment.