Update locationdata.py

This commit is contained in:
SpudGunMan
2024-10-06 22:27:37 -07:00
parent 22d8b889fe
commit 85a29a6942
+1 -1
View File
@@ -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')