# HG changeset patch # User heiko # Date 1220470311 0 # Node ID 80890c874a905e7f8750f06186a1c131b6596ce9 # Parent 21b549d5c57bbacc058192bbf9e172ec55e7b1fb - fixed small \1 => $1 typo diff -r 21b549d5c57b -r 80890c874a90 log.pl --- a/log.pl Thu Aug 21 22:26:57 2008 +0000 +++ b/log.pl Wed Sep 03 19:31:51 2008 +0000 @@ -171,7 +171,7 @@ my $subject = (split /\n/, $text)[0]; $subject =~ s/^\s*\S\s//; # cut the "itemizer" $subject = encode_qp("Service [". hostname(). "]: $subject\n"); - $subject =~ s/\n(.)/\n\t\1/g; + $subject =~ s/\n(.)/\n\t$1/g; $mailer->open({ "To" => $mailto,