From 886564160e3d65f740f5b8ef3ed263b5af8dcfe5 Mon Sep 17 00:00:00 2001 From: LockeShor <75901583+LockeShor@users.noreply.github.com> Date: Sun, 1 Mar 2026 01:09:08 -0500 Subject: [PATCH] fix parsing --- watcher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/watcher.py b/watcher.py index 7cad0ff..0917493 100644 --- a/watcher.py +++ b/watcher.py @@ -96,7 +96,7 @@ def parse_catalog(html: str) -> Dict[str, AppSnapshot]: if " Added:" in remainder: train_part, after_added = remainder.split(" Added:", 1) train = train_part.strip() - pieces = after_added.split(" ", 1) + pieces = after_added.strip().split(" ", 1) added = pieces[0].strip() summary = pieces[1].strip() if len(pieces) > 1 else "" else: