From 7c403ecc8b6bd31f447eb91d73d95055489fbac4 Mon Sep 17 00:00:00 2001 From: Dennis Eriksen Date: Wed, 1 Feb 2023 20:59:42 +0100 Subject: fixing some lintingthings --- scripts/yr.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scripts/yr.py') diff --git a/scripts/yr.py b/scripts/yr.py index 9c3ae5e..3a6c8a7 100644 --- a/scripts/yr.py +++ b/scripts/yr.py @@ -26,13 +26,13 @@ try: 'Cache-Control': 'no-cache', } - response = requests.get(url, headers=hdr) + response = requests.get(url, headers=hdr, timeout=10) if response.status_code != 200: print(response.status_code) print("Oh shit") response.raise_for_status() -except Exception as e: +except requests.exceptions.RequestException as e: print("oh lol") sys.exit(e) -- cgit v1.2.3