This commit is contained in:
SpudGunMan
2024-10-04 21:41:50 -07:00
parent 0d7ea454b6
commit df446ccab5
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -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(line)
log_data['shameList'].insert(0, line)
# get the user who sent the message
user_match = re.search(r'From: (\w+)', line)
+1 -1
View File
@@ -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(line)
log_data['shameList'].insert(0, line)
# get the user who sent the message
user_match = re.search(r'From: (\w+)', line)