commit 6e04f5f45bb33affc6bd631ee440f5ebbc7f8a58 from: Omar Polo date: Sat Aug 27 22:21:11 2022 UTC drop trailing space on Date header values commit - de498c0c69bc35cac6605202921cd6a2d74005ae commit + 6e04f5f45bb33affc6bd631ee440f5ebbc7f8a58 blob - 2782b0ad62f71b6b03651c9d1a6c266825d4f0d3 blob + a278974416e8cc31760eb1af30184868c94d624a --- mexp +++ mexp @@ -53,7 +53,7 @@ while (<>) { last if /^$/; # drop the (1 day ago) string - s/\(.*\)// if /^Date:/; + s/ \(.*\)// if /^Date:/; print $text $_; push @hdrs, san($_); }