From 18a2344c913a265ee25c1330fbd9c1da741c901a Mon Sep 17 00:00:00 2001 From: Brad Miller Date: Fri, 4 Nov 2022 07:12:15 -0700 Subject: [PATCH] Fix: There is no tags table anymore MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit But — some people are agitating for it to make a comeback. --- controllers/admin.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/controllers/admin.py b/controllers/admin.py index 062450187..fff3277ca 100644 --- a/controllers/admin.py +++ b/controllers/admin.py @@ -132,9 +132,9 @@ def assignments(): assigndict[row.id] = row.name tags = [] - tag_query = db(db.tags).select() - for tag in tag_query: - tags.append(tag.tag_name) + # tag_query = db(db.tags).select() + # for tag in tag_query: + # tags.append(tag.tag_name) course = get_course_row(db.courses.ALL) base_course = course.base_course