aboutsummaryrefslogtreecommitdiffstats
path: root/tools/generate_authors.pl
diff options
context:
space:
mode:
authorJoão Valverde <joao.valverde@tecnico.ulisboa.pt>2016-03-07 14:33:30 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2016-03-08 18:02:16 +0000
commit28b9f05b0b8d16b719beeea42db8465417a6902a (patch)
tree024233c734e1f4825ec8f63d89ac50ce37754dd7 /tools/generate_authors.pl
parent80dda81a61753ceff29820f29b755a61994c0bf5 (diff)
AUTHORS: Add <...> to git log email addresses
Change-Id: I936e4a25833906cac75d4d5b7359b5629d14b33d Reviewed-on: https://code.wireshark.org/review/14382 Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
Diffstat (limited to 'tools/generate_authors.pl')
-rwxr-xr-xtools/generate_authors.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/generate_authors.pl b/tools/generate_authors.pl
index 92ebdf5f7f..aaf207ef0a 100755
--- a/tools/generate_authors.pl
+++ b/tools/generate_authors.pl
@@ -139,7 +139,7 @@ sub parse_git_name {
$len = length $name;
$ntab -= $len / 8;
$ntab +=1 if ($len % 8);
- $line = $name . "\t" x $ntab . $email;
+ $line = $name . "\t" x $ntab . "<$email>";
print encode('UTF-8', "$line\r\n");
}
}