Update marshal plan extent for Saturday's 10KM

This commit is contained in:
Timothy Allen 2023-09-02 20:14:07 +02:00
parent fdd6a9b75a
commit d68b4f935f
6 changed files with 29587 additions and 29587 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -35,7 +35,7 @@ for root, dirs, files in os.walk(webfile_dir):
date = m.group(1)
name = m.group(2) + m.group(3)
current = most_recent.get(name)
if current is None or date > current.get('date'):
if current is None or date >= current.get('date'):
most_recent[name] = { 'date': date, 'file': file }
for k, v in most_recent.items():