Skip to content

Commit 64b0a97

Browse files
committed
fix generator deprecation warning
1 parent 01d9685 commit 64b0a97

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

skautis_api_gen.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def get_sections():
4444
soup = get_soup(INDEX)
4545

4646
ul = soup.find('ul')
47-
for li in ul.findAll('li', recursive=False):
47+
for li in ul.find_all('li', recursive=False):
4848
# Task service was removed - filter it out until the dead link is removed as well.
4949
if 'Task.asmx' in li.a['href']:
5050
continue

0 commit comments

Comments
 (0)