Skip to content

Commit 2a3df10

Browse files
Fix HM Attendance on Intro Evals Page
When a member has a house meeting absence excused it should not count against them.
1 parent 7e54224 commit 2a3df10

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

conditional/blueprints/intro_evals.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ def get_fid_cm_count(member_id):
113113
elif freshman_data.freshman_eval_result != "Pending" and internal:
114114
continue
115115

116-
h_meetings = [m.meeting_id for m in get_hm(member)]
116+
h_meetings = [m.meeting_id for m in get_hm(member, only_absent=True)]
117117
member_info = {
118118
'name': name,
119119
'uid': uid,

0 commit comments

Comments
 (0)