Puppeteer - Spelling mistake in log output

This commit is contained in:
dgtlmoon
2026-01-02 11:22:31 +01:00
parent 7a515c4202
commit 5f4998960d
@@ -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