소스 검색

git-notify: Save author without trailing space

Adjust the regular expression which catches the commit author name so
that it doesn't include the space character which follows that name.
Holger Weiss 16 년 전
부모
커밋
51771dc540
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      tools/git-notify

+ 1 - 1
tools/git-notify

@@ -216,7 +216,7 @@ sub get_object_info($)
             last if /^-----BEGIN PGP SIGNATURE-----/;
             push @log, $_;
         }
-        elsif (/^(author|committer|tagger) ((.*)(<.*>)) (\d+) ([+-]\d+)$/)
+        elsif (/^(author|committer|tagger) ((.*) (<.*>)) (\d+) ([+-]\d+)$/)
         {
             $info{$1} = $2;
             $info{$1 . "_name"} = $3;