diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-10-21 00:27:11 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-10-21 00:27:11 +0000 |
commit | a22d9f9721f89111cba2efbd2b795e3edfcb08b8 (patch) | |
tree | acb402ac3c4b3b49749b57004fa58f530b7e1cc2 /IkiWiki | |
parent | 501c4620ac6f6036faf0dc9b05153ca6f3ece5c6 (diff) | |
download | ikiwiki-a22d9f9721f89111cba2efbd2b795e3edfcb08b8.tar ikiwiki-a22d9f9721f89111cba2efbd2b795e3edfcb08b8.tar.gz |
* Support git authors of the form "joey <joey>", which is common when
importing from a svn repo.
Diffstat (limited to 'IkiWiki')
-rw-r--r-- | IkiWiki/Rcs/git.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/Rcs/git.pm b/IkiWiki/Rcs/git.pm index 38581ba67..3407354c9 100644 --- a/IkiWiki/Rcs/git.pm +++ b/IkiWiki/Rcs/git.pm @@ -180,7 +180,7 @@ sub _parse_diff_tree ($@) { #{{{ $ci{ "${who}_epoch" } = $epoch; $ci{ "${who}_tz" } = $tz; - if ($name =~ m/^([^<]+) <([^@]+)/) { + if ($name =~ m/^([^<]+) <([^@>]+)/) { my ($fullname, $username) = ($1, $2); $ci{"${who}_fullname"} = $fullname; $ci{"${who}_username"} = $username; |