[U-Boot] [PATCH] patman: Do not Cc addresses included in To list

Otavio Salvador otavio at ossystems.com.br
Sat Aug 18 19:14:56 CEST 2012


In case an address is listed in the To list, those will be skipped on
Cc list or user might end with a duplicated message.

This fixes the case when a tag points to same address used as series
destination thus avoiding duplicated sending.

Signed-off-by: Otavio Salvador <otavio at ossystems.com.br>
---
Changes in v2:
- use if 'to' in self: to remove the try block

 tools/patman/series.py |    4 ++++
 1 file changed, 4 insertions(+)

diff --git a/tools/patman/series.py b/tools/patman/series.py
index eda1e9b..663990b 100644
--- a/tools/patman/series.py
+++ b/tools/patman/series.py
@@ -114,6 +114,10 @@ class Series(dict):
                 cc_list += gitutil.BuildEmailList(commit.tags)
             cc_list += gitutil.BuildEmailList(commit.cc_list)
 
+            # Skip items in To list
+            if 'to' in self:
+                map(cc_list.remove, gitutil.BuildEmailList(self.to))
+
             for email in cc_list:
                 if email == None:
                     email = col.Color(col.YELLOW, "<alias '%s' not found>"
-- 
1.7.10.4



More information about the U-Boot mailing list