Skip to content

Commit

Permalink
Follow-up for #9762, forgot one place.
Browse files Browse the repository at this point in the history
  • Loading branch information
felixfontein committed Feb 18, 2025
1 parent a3fd357 commit 0526f7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/modules/apache2_mod_proxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ def get_member_attributes(self):
except TypeError as exc:
self.module.fail_json(msg="Cannot parse balancer_member_page HTML! {0}".format(exc))
else:
subsoup = find_all(soup, 'table')[1].find_all('tr')
subsoup = find_all(find_all(soup, 'table')[1], 'tr')
keys = find_all(subsoup[0], 'th')
for valuesset in subsoup[1::1]:
if re.search(pattern=self.host, string=str(valuesset)):
Expand Down

0 comments on commit 0526f7b

Please sign in to comment.