[Python-checkins] peps: obscure the email address in bdfl-delegate, too

benjamin.peterson python-checkins at python.org
Wed Jun 5 21:03:34 CEST 2013


http://hg.python.org/peps/rev/51170b413ebc
changeset:   4922:51170b413ebc
user:        Benjamin Peterson <benjamin at python.org>
date:        Wed Jun 05 12:03:27 2013 -0700
summary:
  obscure the email address in bdfl-delegate, too

files:
  pep2html.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/pep2html.py b/pep2html.py
--- a/pep2html.py
+++ b/pep2html.py
@@ -202,7 +202,7 @@
     print >> outfile, '</td></tr></table>'
     print >> outfile, '<div class="header">\n<table border="0">'
     for k, v in header:
-        if k.lower() in ('author', 'discussions-to'):
+        if k.lower() in ('author', 'bdfl-delegate', 'discussions-to'):
             mailtos = []
             for part in re.split(',\s*', v):
                 if '@' in part:

-- 
Repository URL: http://hg.python.org/peps


More information about the Python-checkins mailing list