Skip to content

Commit af071fd

Browse files
committed
Fix issue with draft approval emails for individual submission, found by Cindy Morgan
- Legacy-Id: 3912
1 parent 46139d2 commit af071fd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/idrfc/mails.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ def generate_approval_mail_approved(request, doc):
306306

307307
# the second check catches some area working groups (like
308308
# Transport Area Working Group)
309-
if doc.group.type_id != "area" and not doc.group.name.endswith("Working Group"):
309+
if doc.group.type_id not in ("area", "individ") and not doc.group.name.endswith("Working Group"):
310310
doc.group.name_with_wg = doc.group.name + " Working Group"
311311
if doc.group.list_email:
312312
cc.append("%s mailing list <%s>" % (doc.group.acronym, doc.group.list_email))

0 commit comments

Comments
 (0)