diff options
author | Dennis Eriksen <d@ennis.no> | 2023-02-01 20:59:42 +0100 |
---|---|---|
committer | Dennis Eriksen <d@ennis.no> | 2023-02-01 20:59:42 +0100 |
commit | 7c403ecc8b6bd31f447eb91d73d95055489fbac4 (patch) | |
tree | f70a96871178c0d78be505cc71f090e4e91857ea /scripts/yr.py | |
parent | moving and renaming/breaking everything (diff) | |
download | energyscripts-7c403ecc8b6bd31f447eb91d73d95055489fbac4.tar.gz |
fixing some lintingthings
Diffstat (limited to 'scripts/yr.py')
-rw-r--r-- | scripts/yr.py | 4 |
1 files changed, 2 insertions, 2 deletions
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) |