From e7b9d7eba1641ad1586d9211b7bdc69d1b87b0c1 Mon Sep 17 00:00:00 2001 From: Greg Kroah-Hartman Date: Fri, 24 Jul 2009 11:26:01 -0700 Subject: [PATCH] gitdm: report issue when an email address is a "name" This probably means an incorrect commit message, it also means that if it is not fixed, the category for this person is probably going to be incorrect. Signed-off-by: Greg Kroah-Hartman --- gitdm | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/gitdm b/gitdm index 4cd1a8c..b7f8868 100755 --- a/gitdm +++ b/gitdm @@ -245,7 +245,11 @@ def grabpatch(): p.added += 1 continue if Prem.match (Line): - p.removed += 1 + p.removed += 1 + + if '@' in p.author.name: + print '%s is an author name, probably not what you want' % p.author.name + # # Record some global information - but only if this patch had # stuff which wasn't ignored. This work should be done