From 932ed7d1488273811b0f77456d77e79b73cd84e5 Mon Sep 17 00:00:00 2001 From: Paul Lecuq Date: Wed, 23 Mar 2022 18:26:38 +0100 Subject: [PATCH] updated bl module --- states/_modules/bl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/states/_modules/bl.py b/states/_modules/bl.py index 2868d5f..d700f74 100644 --- a/states/_modules/bl.py +++ b/states/_modules/bl.py @@ -6,7 +6,7 @@ from urllib.request import urlopen, Request def get_ips(url="https://ipbl.paulbsd.com"): """get_ips fetch ips blacklists from ipbl""" - fullurl = f"{url}/ips/last" + fullurl = f"{url}/ips/last?interval=3%20h" req = Request(method="GET", url=fullurl) res = urlopen(req) results = json.loads(res.read())