Fix listings

This commit is contained in:
Robert Miles 2021-10-07 00:03:21 +00:00
parent 147955c8a0
commit ec859c8bba
1 changed files with 1 additions and 1 deletions

2
app.py
View File

@ -79,7 +79,7 @@ def abstract_listing_generator(listing_file,header_file=None,header_text=None,li
while (line_count:=line_count+1) and (line:=f.readline()):
if limit_line_count and line_count>limit_line_count: return
if not filter_line(line): continue
log_name, log_link = line.strip().split("\t")
log_name, log_link = line[1:].strip().split("\t")
if count_from_end:
log_num = total_line_count-line_count
else: