Skip to content

Commit 8e36fd4

Browse files
authored
apache2_mod_proxy: follow-up for #9762, forgot one place with find_all/findAll (#9775)
Follow-up for #9762, forgot one place.
1 parent a3fd357 commit 8e36fd4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/modules/apache2_mod_proxy.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ def get_member_attributes(self):
277277
except TypeError as exc:
278278
self.module.fail_json(msg="Cannot parse balancer_member_page HTML! {0}".format(exc))
279279
else:
280-
subsoup = find_all(soup, 'table')[1].find_all('tr')
280+
subsoup = find_all(find_all(soup, 'table')[1], 'tr')
281281
keys = find_all(subsoup[0], 'th')
282282
for valuesset in subsoup[1::1]:
283283
if re.search(pattern=self.host, string=str(valuesset)):

0 commit comments

Comments
 (0)