Skip to content

Commit b418e5d

Browse files
committed
Fix missing "return" in liaison proxy, fixes problem with from email
on https://datatracker.ietf.org/liaison/1154/ as reported by Stephanie McCammon. - Legacy-Id: 4307
1 parent 7b2963a commit b418e5d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/liaisons/proxy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ def from_body(self):
136136
def from_sdo(self):
137137
return self.from_group if self.from_group and self.from_group.type_id == "sdo" else None
138138
def from_email(self):
139-
self.from_contact.address
139+
return self.from_contact.address
140140
def get_absolute_url(self):
141141
return '/liaison/%d/' % self.detail_id
142142
class Meta:

0 commit comments

Comments
 (0)