From c5e99f9730110f1a1006f2f9f624c9bf9a225ce8 Mon Sep 17 00:00:00 2001 From: David Mann Date: Sat, 10 Oct 2020 14:28:07 -0400 Subject: [PATCH] Fix typo on caught exception name --- lyrics.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lyrics.py b/lyrics.py index 25f59fc..e2fd296 100644 --- a/lyrics.py +++ b/lyrics.py @@ -99,7 +99,7 @@ def http_post(url, data, ua): r = requests.post(url, data=data, headers=headers, proxies=proxy) return (r.text) except Exception as exceptio: - print(exceoptio) + print(exceptio) pass # if the request was denied, or the connection was interrupted, retrying. (up to five times) fail_count = 0