Skip to content

Commit e58b722

Browse files
committed
fix problem using non-ascii names in session request notification email. Commit ready for merge.
- Legacy-Id: 7911
1 parent fdc93d4 commit e58b722

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

ietf/secr/sreq/views.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,11 +94,11 @@ def get_requester_text(person,group):
9494
'''
9595
roles = group.role_set.filter(name__in=('chair','secr'),person=person)
9696
if roles:
97-
return '%s, a %s of the %s working group' % (person, roles[0].name, group.acronym)
97+
return '%s, a %s of the %s working group' % (person.ascii, roles[0].name, group.acronym)
9898
if group.parent.role_set.filter(name='ad',person=person):
99-
return '%s, a %s Area Director' % (person, group.parent.acronym.upper())
99+
return '%s, a %s Area Director' % (person.ascii, group.parent.acronym.upper())
100100
if person.role_set.filter(name='secr',group__acronym='secretariat'):
101-
return '%s, on behalf of the %s working group' % (person, group.acronym)
101+
return '%s, on behalf of the %s working group' % (person.ascii, group.acronym)
102102

103103
def save_conflicts(group, meeting, conflicts, name):
104104
'''

0 commit comments

Comments
 (0)