diff options
Diffstat (limited to 'pydis_site/apps/home/views')
| -rw-r--r-- | pydis_site/apps/home/views/home.py | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/pydis_site/apps/home/views/home.py b/pydis_site/apps/home/views/home.py index 69e706c5..9bb1f8fd 100644 --- a/pydis_site/apps/home/views/home.py +++ b/pydis_site/apps/home/views/home.py @@ -1,7 +1,7 @@  import logging  from typing import Dict, List -import requests +import httpx  from django.core.handlers.wsgi import WSGIRequest  from django.http import HttpResponse  from django.shortcuts import render @@ -56,12 +56,12 @@ class HomeView(View):          repo_dict = {}          try:              # Fetch the data from the GitHub API -            api_data: List[dict] = requests.get( +            api_data: List[dict] = httpx.get(                  self.github_api,                  headers=self.headers,                  timeout=settings.TIMEOUT_PERIOD              ).json() -        except requests.exceptions.Timeout: +        except httpx.TimeoutException:              log.error("Request to fetch GitHub repository metadata for timed out!")              return repo_dict  |