diff options
| author | 2022-08-04 09:29:05 +0100 | |
|---|---|---|
| committer | 2022-08-04 09:29:05 +0100 | |
| commit | 1122f5abfccffb99c86673c0ed23ac6713dc3c99 (patch) | |
| tree | fed9ef2740c58f02d07aed10fe0c8c509a17d848 /pydis_site/apps/home/views/home.py | |
| parent | Run Migrations For Tests (diff) | |
| parent | Merge pull request #751 from python-discord/add-infraction-last-applied (diff) | |
Merge branch 'main' into speedup-tests
Diffstat (limited to 'pydis_site/apps/home/views/home.py')
| -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 |