From 85a29a6942a1c678dd04e5a0333a1afbe5e18960 Mon Sep 17 00:00:00 2001 From: SpudGunMan Date: Sun, 6 Oct 2024 22:27:37 -0700 Subject: [PATCH] Update locationdata.py --- modules/locationdata.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/locationdata.py b/modules/locationdata.py index 19455a6..4f9ab77 100644 --- a/modules/locationdata.py +++ b/modules/locationdata.py @@ -75,7 +75,7 @@ def getRepeaterBook(lat=0, lon=0): try: msg = '' response = requests.get(repeater_url) - soup = BeautifulSoup(response.text, 'html.parser') + soup = bs(response.text, 'html.parser') table = soup.find('table', attrs={'class': 'w3-table w3-striped w3-responsive w3-mobile w3-auto sortable'}) if table is not None: cells = table.find_all('td')