We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent edf4096 commit c05bbc2Copy full SHA for c05bbc2
1 file changed
bases/rsptx/web2py_server/applications/runestone/modules/rs_grading.py
@@ -598,9 +598,9 @@ def _scorable_lp_answers(
598
if deadline:
599
query = query & (db.lp_answers.timestamp < deadline)
600
if practice_start_time:
601
- query = query & (db.codelens_answers.timestamp >= practice_start_time)
+ query = query & (db.lp_answers.timestamp >= practice_start_time)
602
if now:
603
- query = query & (db.codelens_answers.timestamp <= now)
+ query = query & (db.lp_answers.timestamp <= now)
604
605
return db(query).select(orderby=db.lp_answers.timestamp)
606
0 commit comments