Skip to content

Commit 98d15a3

Browse files
committed
Fix bull calling incorrect function. Fixes ietf-tools#385
- Legacy-Id: 2548
1 parent 46d48ac commit 98d15a3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/liaisons/views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ def _can_take_care(liaison, user):
179179
if user.groups.filter(name__in=LIAISON_EDIT_GROUPS):
180180
return True
181181
else:
182-
return _can_take_care(liaison, get_person_for_user(user))
182+
return _find_person_in_emails(liaison, get_person_for_user(user))
183183
return False
184184

185185

0 commit comments

Comments
 (0)