From 6b47e2223d1d21cde34d2f53ede2209f932e7c09 Mon Sep 17 00:00:00 2001 From: Tomi Ollila Date: Fri, 24 Aug 2012 20:29:21 +0300 Subject: [PATCH] contrib/nmbug/nmbug-status: if realname empty, use part of mailaddr When the From: field in patch email does not contain 'realname' field, the patch listing does not show anything as patch sender. In this case use the part before '@' in mail address as the sender identification in patch listing. --- contrib/nmbug/nmbug-status | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/contrib/nmbug/nmbug-status b/contrib/nmbug/nmbug-status index f37ee84b..9a334ccc 100755 --- a/contrib/nmbug/nmbug-status +++ b/contrib/nmbug/nmbug-status @@ -90,7 +90,9 @@ def print_view(title, query, comment): val = str.join(' ', val.split(None)[1:4]) val = str(datetime.datetime.strptime(val, '%d %b %Y').date()) elif header == 'from': - val = rfc822.parseaddr(val)[0] + (val, addr) = rfc822.parseaddr(val) + if val == '': + val = addr.split('@')[0] if last[header] == val: out[header] = '' -- 2.43.0