Skip to content

Commit fd87b22

Browse files
committed
Summary: Fix missing u in front of a format string (causes Unicode woes)
- Legacy-Id: 10104
1 parent c39c4ae commit fd87b22

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/ipr/views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,7 @@ def email(request, id):
380380
initial = {
381381
'to': ipr.submitter_email,
382382
'frm': settings.IPR_EMAIL_TO,
383-
'subject': 'Regarding {}'.format(ipr.title),
383+
'subject': u'Regarding {}'.format(ipr.title),
384384
'reply_to': reply_to,
385385
}
386386
form = MessageModelForm(initial=initial)

0 commit comments

Comments
 (0)