diff options
Diffstat (limited to 'src/utils/http.py')
| -rw-r--r-- | src/utils/http.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/http.py b/src/utils/http.py index 6fbb64de..edc09f04 100644 --- a/src/utils/http.py +++ b/src/utils/http.py @@ -62,7 +62,7 @@ def request(url: str, method: str="GET", get_params: dict={}, if soup: soup = bs4.BeautifulSoup(response_content, parser) - return Response(response.status_code, soup, response_heders) + return Response(response.status_code, soup, response_headers) data = response_content.decode(response.encoding or fallback_encoding) if json and data: |
