From d671b19bce8fecd42b70e165805850587dee3889 Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Sat, 18 Jan 2025 14:27:09 -0800 Subject: [PATCH] Update checklist.py --- modules/checklist.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/checklist.py b/modules/checklist.py index c4de533..808a34e 100644 --- a/modules/checklist.py +++ b/modules/checklist.py @@ -101,9 +101,9 @@ def process_checklist_command(nodeID, message, name="none", location="none"): comment = "" # handle checklist commands if "checkin" in message.lower(): - return checkin(name, current_date, current_time, comment) + return checkin(name, current_date, current_time, location, comment) elif "checkout" in message.lower(): - return checkout(name, current_date, current_time, comment) + return checkout(name, current_date, current_time, location, comment) elif "purgein" in message.lower(): return delete_checkin(nodeID) elif "purgeout" in message.lower():