about summary refs log tree commit homepage
diff options
context:
space:
mode:
-rw-r--r--lib/PublicInbox/HTTP.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/PublicInbox/HTTP.pm b/lib/PublicInbox/HTTP.pm
index 17f89302..fa34b443 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);
 }