Skip to content

Commit bd58719

Browse files
authored
Merge pull request #3 from rlippmann/1.1.4
fix html parse for pulse v27
2 parents 6f0757d + 6da219c commit bd58719

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyadtpulse/site.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ def _update_zone_from_soup(self, soup: BeautifulSoup) -> Optional[ADTPulseZones]
374374
except ValueError:
375375
last_update = datetime(1970, 1, 1)
376376
# name = row.find("a", {"class": "p_deviceNameText"}).get_text()
377-
temp = row.find("span", {"class": "p_grayNormalText"})
377+
temp = row.find("div", {"class": "p_grayNormalText"})
378378
if temp is None:
379379
break
380380
zone = int(

0 commit comments

Comments
 (0)