Skip to content

Commit 652a56c

Browse files
committed
Merge branch 'master' of github.com:csssuf/conditional
2 parents 134473b + 674de51 commit 652a56c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

conditional/blueprints/spring_evals.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@ def get_cm_count(member_id):
4747
SpringEval.active).first()
4848

4949
if spring_entry is None:
50-
db.session.add(SpringEval(uid))
50+
spring_entry = SpringEval(uid)
51+
db.session.add(spring_entry)
5152
db.session.flush()
5253
db.session.commit()
5354
# something bad happened to get here

0 commit comments

Comments
 (0)