We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a3fd357 commit 8e36fd4Copy full SHA for 8e36fd4
plugins/modules/apache2_mod_proxy.py
@@ -277,7 +277,7 @@ def get_member_attributes(self):
277
except TypeError as exc:
278
self.module.fail_json(msg="Cannot parse balancer_member_page HTML! {0}".format(exc))
279
else:
280
- subsoup = find_all(soup, 'table')[1].find_all('tr')
+ subsoup = find_all(find_all(soup, 'table')[1], 'tr')
281
keys = find_all(subsoup[0], 'th')
282
for valuesset in subsoup[1::1]:
283
if re.search(pattern=self.host, string=str(valuesset)):
0 commit comments