commit 75329d7458399f3ed19060b64993222fa69983db
parent c1dbd85d2da2470dbf5d2a1f0f6ef3a60b6dca8e
Author: david cochran <about.trout@gmail.com>
Date: Tue, 5 Mar 2024 18:31:21 -0800
update README
Diffstat:
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/README.md b/README.md
@@ -2,7 +2,7 @@
Locate large boats as they pass by Pillar Point.
-
+
#### Install the requirements.
diff --git a/ppboatwatch/ppbw.py b/ppboatwatch/ppbw.py
@@ -93,7 +93,7 @@ async def announce_matches(announce_q, client):
matches_path = await announce_q.get()
logging.warning(f"[annouce_matches] Posting match {matches_path}")
dt = int(time.time()) - last_announce_ts
- thread_ts = await post_match(client, matches_path, thread_ts if dt < 15000 else None)
+ thread_ts = await post_match(client, matches_path, thread_ts if dt < 15 else None)
logging.warning(f"[annnounce_matches] Posted match at thread_ts {thread_ts}")
last_announce_ts = time.time()