diff options
author | Jesse Vincent <jesse@bestpractical.com> | 2009-10-06 13:06:12 -0400 |
---|---|---|
committer | Jesse Vincent <jesse@bestpractical.com> | 2009-10-06 13:34:36 -0400 |
commit | 5e8353a02c4ce870333dd5d6ac1d9e64aa0c367b (patch) | |
tree | ae85c1aada7a850812e23c103b2ede6382cbc15c /Porting/checkAUTHORS.pl | |
parent | cc4c9faad0767bbb62e32c96638b5ce02dde234e (diff) | |
download | perl-5e8353a02c4ce870333dd5d6ac1d9e64aa0c367b.tar.gz |
Further clean up checkAUTHORS.pl output (fixing encoded @ signs)
Diffstat (limited to 'Porting/checkAUTHORS.pl')
-rw-r--r-- | Porting/checkAUTHORS.pl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Porting/checkAUTHORS.pl b/Porting/checkAUTHORS.pl index 44a1c8ac84..61c6a7f5c4 100644 --- a/Porting/checkAUTHORS.pl +++ b/Porting/checkAUTHORS.pl @@ -232,7 +232,8 @@ sub _raw_address { } $addr = lc $addr; $addr = $map{$addr} || $addr; - + $addr =~ s/\\100/@/g; # Sometimes, there are encoded @ signs in the git log. + if ($real_name) { $real_names{$addr} = $real_name}; return $addr; } |