From 0d7ea454b6842c80b7009860f7c50d3f088656b5 Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Fri, 4 Oct 2024 21:39:52 -0700 Subject: [PATCH] fix --- etc/report_generator.py | 2 +- etc/report_generator5.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/etc/report_generator.py b/etc/report_generator.py index a2d50c6..833edef 100644 --- a/etc/report_generator.py +++ b/etc/report_generator.py @@ -118,7 +118,7 @@ def parse_log_file(file_path): line = line.replace('|', '') line = line.replace('INFO', '') line = line.replace('DEBUG', '') - log_data['shameList'].append(0, line) + log_data['shameList'].append(line) # get the user who sent the message user_match = re.search(r'From: (\w+)', line) diff --git a/etc/report_generator5.py b/etc/report_generator5.py index 53a1d00..8184f3e 100644 --- a/etc/report_generator5.py +++ b/etc/report_generator5.py @@ -128,7 +128,7 @@ def parse_log_file(file_path): line = line.replace('|', '') line = line.replace('INFO', '') line = line.replace('DEBUG', '') - log_data['shameList'].append(0, line) + log_data['shameList'].append(line) # get the user who sent the message user_match = re.search(r'From: (\w+)', line)