diff --git a/src/link_scraper.py b/src/link_scraper.py index 7061440..bc957f1 100644 --- a/src/link_scraper.py +++ b/src/link_scraper.py @@ -87,13 +87,13 @@ def standard_urlmap_exception_suppressor(exc: Exception, url: httpx.URL) -> bool "Got ", ("Non-HTML Content-Type Header", "red"), ", (", - (str(exc.response.headers.get("Content-Type", "")), "orange"), + (str(exc.response.headers.get("Content-Type", "")), "grey69"), ")", ) return True if isinstance(exc, httpx.TransportError): - print_exc("Got ", (exc.__class__.__qualname__, "red"), ", (", (str(exc), "orange"), ")") + print_exc("Got ", (exc.__class__.__qualname__, "red"), ", (", (str(exc), "grey69"), ")") return True if isinstance(exc, ParserRejectedMarkup):