lib/PublicInbox/HTTP.pm | 2 +- diff --git a/lib/PublicInbox/HTTP.pm b/lib/PublicInbox/HTTP.pm index 17f89302bceca8e24180f8ddbfc0931bf77220f2..fa34b443f579b45c37a72b8678e64978062fe6a1 100644 --- a/lib/PublicInbox/HTTP.pm +++ b/lib/PublicInbox/HTTP.pm @@ -335,7 +335,7 @@ sub write_err { my ($self, $len) = @_; my $err = $self->{httpd}->{env}->{'psgi.errors'}; my $msg = $! || '(zero write)'; - $msg .= " ($len bytes remaining)\n" if defined $len; + $msg .= " ($len bytes remaining)" if defined $len; $err->print("error buffering to input: $msg\n"); quit($self, 500); }