Skip to content

Commit

Permalink
Merge pull request #9 from retupmoca/master
Browse files Browse the repository at this point in the history
socket s/send/print/
  • Loading branch information
supernovus committed Nov 8, 2015
2 parents c50d75d + 18b9a17 commit 92bb310
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/SCGI/Errors.pm6
Expand Up @@ -8,7 +8,7 @@ method print ($message)
{
my $crlf = CRLF x 2;
$*ERR.print: "[{time}] $message";
$.connection.socket.send(SCGI_ERROR_CODE~$crlf);
$.connection.socket.print(SCGI_ERROR_CODE~$crlf);
$.connection.close;
}

Expand Down

0 comments on commit 92bb310

Please sign in to comment.