Skip to content

Commit

Permalink
Removing prepending of "Error: " in ShellDispatcher::stderr
Browse files Browse the repository at this point in the history
  • Loading branch information
mariuswilms committed Apr 16, 2009
1 parent ec18aac commit 73cbdf0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cake/console/cake.php
Expand Up @@ -436,7 +436,7 @@ function stdout($string, $newline = true) {
* @access public
*/
function stderr($string) {
fwrite($this->stderr, 'Error: '. $string);
fwrite($this->stderr, $string);
}
/**
* Parses command line options
Expand Down

0 comments on commit 73cbdf0

Please sign in to comment.