From ec49e57888a79008c61c97aeea6f75ae27eba666 Mon Sep 17 00:00:00 2001 From: Brad Miller Date: Sat, 4 Mar 2023 10:35:28 -0800 Subject: [PATCH] Fix: typo in update statement --- runestone/pretext/chapter_pop.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runestone/pretext/chapter_pop.py b/runestone/pretext/chapter_pop.py index be7c67800..d6c3f1f85 100644 --- a/runestone/pretext/chapter_pop.py +++ b/runestone/pretext/chapter_pop.py @@ -245,7 +245,7 @@ def manifest_data_to_db(course_name, manifest_path): .where( and_( source_code.c.acid == filename, - questions.c.course_id == course_name, + source_code.c.course_id == course_name, ) ) .values(**vdict)