We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8277724 + 50d15e4 commit 47a9a44Copy full SHA for 47a9a44
1 file changed
src/arris_stats_sb8200.py
@@ -58,11 +58,12 @@ def parse_html_sb8200(html):
58
if table_row.th:
59
continue
60
61
+ channel_id = table_row.find_all('td')[1].text.strip()
62
+
63
# Some firmwares have a header row not already skiped by "if table_row.th", skip it if channel_id isn't an integer
64
if not channel_id.isdigit():
65
66
- channel_id = table_row.find_all('td')[1].text.strip()
67
frequency = table_row.find_all('td')[4].text.replace(" Hz", "").strip()
68
power = table_row.find_all('td')[6].text.replace(" dBmV", "").strip()
69
0 commit comments