Skip to content

Commit 5a424fe

Browse files
committed
Merged in [7153] from rjsparks@nostrum.com:
Fixed a typo in code that looks for the IRTF chair email address while adding replaces relationships. Made that code slightly more robust. Fixes ticket ietf-tools#1253 - Legacy-Id: 7531 Note: SVN reference [7153] has been migrated to Git commit 99c01fa
2 parents 2718eb3 + 99c01fa commit 5a424fe

3 files changed

Lines changed: 5 additions & 4 deletions

File tree

ietf/bin/announce-header-change

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ from ietf.utils.mail import send_mail
1111

1212
management.setup_environ(settings)
1313

14-
target_date=datetime.date(year=2014,month=1,day=20)
14+
target_date=datetime.date(year=2014,month=1,day=24)
1515

1616
send_mail(request = None,
1717
to = "IETF-Announce <ietf-announce@ietf.org>",

ietf/doc/views_draft.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -298,9 +298,9 @@ def collect_email_addresses(emails, doc):
298298
if address not in emails:
299299
emails[address] = '"%s-ads"' % (doc.group.acronym)
300300
elif doc.group.type.slug == 'rg':
301-
email = doc.group.parent.role_set.filter(name='char')[0].email
302-
if email.address not in emails:
303-
emails[email.address] = '"%s"' % (email.person.name)
301+
for role in doc.group.parent.role_set.filter(name='chair'):
302+
if role.email.address not in emails:
303+
emails[role.email.address] = '"%s"' % (role.person.name)
304304
if doc.shepherd:
305305
address = doc.shepherd.email_address();
306306
if address not in emails:

ready-for-merge

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
# --- Add entries at the top ---
99

10+
personal/rcross/v5.1.0@7454
1011
personal/rjs/v5.1.0-dajaxice-patch@7456
1112
personal/rcross/v5.0.2@7398
1213
personal/rcross/v5.0.2@7378

0 commit comments

Comments
 (0)