Skip to content

Commit 24e4517

Browse files
committed
Reflect the right group type in personnel change messages. Fixes ietf-tools#1746. Commit ready for merge.
- Legacy-Id: 10430
1 parent e146952 commit 24e4517

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/group/mails.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def email_admin_re_charter(request, group, subject, text, mailtrigger):
2828

2929
def email_personnel_change(request, group, text, changed_personnel):
3030
(to, cc) = gather_address_lists('group_personnel_change',group=group,changed_personnel=changed_personnel)
31-
full_subject = u"Personnel change for %s working group" % (group.acronym)
31+
full_subject = u"Personnel change for %s %s" % (group.acronym,group.type.name)
3232
send_mail_text(request, to, None, full_subject, text, cc=cc)
3333

3434

0 commit comments

Comments
 (0)