Skip to content

Commit b2aae50

Browse files
committed
docs/generate_html_pages: fix for deprecated findAll
1 parent 59c3e04 commit b2aae50

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/generate_html_pages.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ def get_doc_links():
109109

110110
# find every link that's for an indicator and convert to absolute urls
111111
soup = BeautifulSoup(html, 'html.parser')
112-
links = [a for a in soup.findAll('a') if 'indicator' in a['href']]
112+
links = [a for a in soup.find_all('a') if 'indicator' in a['href']]
113113
ret = {}
114114
for a in links:
115115
url = ''.join([tadoc_homepage, a['href']])

0 commit comments

Comments
 (0)