remove leftover closing paren from PR #119

This commit is contained in:
Mat 2015-01-03 16:44:47 -05:00
parent 5c8f6b69d0
commit b7a6b7047b

View File

@ -205,10 +205,10 @@ sub parse_line {
return 'info', $pid, undef, undef, $message return 'info', $pid, undef, undef, $message
if substr($message, 0, 13) eq 'Listening on '; if substr($message, 0, 13) eq 'Listening on ';
return 'err', $pid, undef, undef, $message) return 'err', $pid, undef, undef, $message
if $line =~ /at [\S]+ line \d/; # generic perl error if $line =~ /at [\S]+ line \d/; # generic perl error
print "UNKNOWN LINE: $line\n"; print "UNKNOWN LINE: $line\n";
return 'unknown', $pid, undef, undef, $message); return 'unknown', $pid, undef, undef, $message;
} }
sub parse_line_plugin { sub parse_line_plugin {