From 5f4998960d4cb89d3ec9abc1a347ed247590883b Mon Sep 17 00:00:00 2001 From: dgtlmoon Date: Fri, 2 Jan 2026 11:22:31 +0100 Subject: [PATCH] Puppeteer - Spelling mistake in log output --- changedetectionio/content_fetchers/puppeteer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/changedetectionio/content_fetchers/puppeteer.py b/changedetectionio/content_fetchers/puppeteer.py index 8f8733ebe..f9eeb46a5 100644 --- a/changedetectionio/content_fetchers/puppeteer.py +++ b/changedetectionio/content_fetchers/puppeteer.py @@ -325,7 +325,7 @@ class fetcher(Fetcher): if not response: logger.warning("Page did not fetch! trying again!") if response is None and attempt>=2: - logger.warning(f"Content Fetcher > Response object was none (as in, the response from the browser was empty, not just the content) exiting attmpt {attempt}") + logger.warning(f"Content Fetcher > Response object was none (as in, the response from the browser was empty, not just the content) exiting attempt {attempt}") raise EmptyReply(url=url, status_code=None) attempt+=1