diff --git a/api/core/scrapers/indeed/__init__.py b/api/core/scrapers/indeed/__init__.py index d25f7b3..1138639 100644 --- a/api/core/scrapers/indeed/__init__.py +++ b/api/core/scrapers/indeed/__init__.py @@ -37,7 +37,7 @@ class IndeedScraper(Scraper): if response.status_code != status.HTTP_200_OK: raise HTTPException( status_code=status.HTTP_400_BAD_REQUEST, - detail=f"Response returned {response.status_code} {response.reason}", + detail=f"Response returned {response.status_code}", ) soup = BeautifulSoup(response.content, "html.parser")