Update checklist.py

This commit is contained in:
SpudGunMan
2025-01-18 14:33:08 -08:00
parent 8e15a3fc99
commit 69605e0984
+1 -1
View File
@@ -88,7 +88,7 @@ def list_checkin():
conn.close()
checkin_list = ""
for row in rows:
checkin_list += "Checkin ID: " + str(row[0]) + " Name: " + row[1] + " Date: " + row[2] + " Time: " + row[3] + " Notes: " + row[4] + "\n"
checkin_list += "Checkin ID: " + row[1] + " Date: " + row[2] + " Time: " + row[3] + " Notes: " + row[5] + "\n"
# if empty list
if checkin_list == "":
return "No data to display."