Add underscore to email pattern
authorRich Salz <rsalz@openssl.org>
Thu, 15 Jun 2017 12:23:57 +0000 (08:23 -0400)
committerRich Salz <rsalz@openssl.org>
Thu, 15 Jun 2017 12:24:06 +0000 (08:24 -0400)
git-import

index 3460b35d2195b46aab734b57cb5fde5ee214a44f..496210bada72e039dcf2d94eb16169c549756c6e 100755 (executable)
@@ -10,7 +10,7 @@ if not os.environ.has_key('GIT_DIR'):
 
 Author = re.compile("Author: (.*) <(.*)>")
 ReviewedBy = re.compile(" *Reviewed-by:")
-Email = re.compile(".*?([0-9a-z.-]+@[0-9a-z.-]+).*", re.I)
+Email = re.compile(".*?([_0-9a-z.-]+@[0-9a-z.-]+).*", re.I)
 
 # Accented/multi-byte characters we just filter out.
 Stripchars = ''.join([chr(x) for x in range(128,255)])