Skip to content

Commit ee2892e

Browse files
committed
Bugfix: don't assign FK to Email to an EmailField (which expects just an email string).
- Legacy-Id: 8831
1 parent f4ce5e0 commit ee2892e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/nomcom/forms.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -433,7 +433,7 @@ def save(self, commit=True):
433433

434434
if author:
435435
nomination.nominator_email = author.address
436-
feedback.author = author
436+
feedback.author = author.address
437437
feedback.save()
438438

439439
nomination.nominee = nominee

0 commit comments

Comments
 (0)