From f83a2063c3d5887f9bc83cf253991fc9494c4034 Mon Sep 17 00:00:00 2001 From: Luc Date: Tue, 7 Dec 2021 11:51:50 +0100 Subject: [PATCH] Boolean typo --- tubesync/healthcheck.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tubesync/healthcheck.py b/tubesync/healthcheck.py index e3635d3..200b811 100755 --- a/tubesync/healthcheck.py +++ b/tubesync/healthcheck.py @@ -23,7 +23,7 @@ def do_heatlhcheck(url): response = requests.get(url, headers=headers, timeout=TIMEOUT) return response.status_code == 200 except requests.exceptions.RequestException: - return false + return False if __name__ == '__main__':