Update Webserver.py

fix bug in the export logs in csv function
This commit is contained in:
jeanGaston 2024-05-22 20:28:39 +02:00
parent a44fd1cb30
commit 5d8905d91a

View File

@ -38,7 +38,7 @@ def export_logs():
log_line = "TimeStamp,User,Tag UID,Door ID,Granted,\n" log_line = "TimeStamp,User,Tag UID,Door ID,Granted,\n"
log_output.write(log_line) log_output.write(log_line)
for log in logs: for log in logs:
log_line = f"{log[0]},{log[1]},{log[2]},{log[3]},{'Yes' if log[4] else 'No'},\n" log_line = f"{log[0]},{log[1]},{log[2]},{log[4]},{'Yes' if log[3] else 'No'},\n"
log_output.write(log_line) log_output.write(log_line)
# Set the position to the beginning of the stream # Set the position to the beginning of the stream