Skip to content

Commit 438b636

Browse files
committed
Fix: too many nots
1 parent 9ebce2e commit 438b636

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

bases/rsptx/web2py_server/applications/runestone/controllers/admin.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -715,7 +715,7 @@ def course_students():
715715

716716
searchdict = OrderedDict()
717717
for row in cur_students:
718-
if not row.id not in iset:
718+
if row.id not in iset:
719719
name = row.first_name + " " + row.last_name
720720
username = row.username
721721
searchdict[str(username)] = name
@@ -740,7 +740,6 @@ def grading():
740740
for i in instructors:
741741
iset.add(i.instructor)
742742

743-
744743
for row in assignments_query:
745744
assignmentids[row.name] = int(row.id)
746745
# Retrieve relevant info for each question, ordering them based on their

bases/rsptx/web2py_server/applications/runestone/static/motd.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
<h4>Updates August 17, 2023 </h4>
1+
<h4>Updates September 2, 2023 </h4>
22
<ul>
3+
<li>New interface to dump course data (works for even the largest courses!)</li>
34
<li>New Course Home Page</li>
45
<li>New Runestone home page</li>
56
<li>New server for doing assignments</li>

0 commit comments

Comments
 (0)