summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2024-03-26 14:09:09 +0100
committerFlorian Bruhin <me@the-compiler.org>2024-03-26 14:09:09 +0100
commit0a5d92119e27c8923fd2140e6fb407acd3c04f90 (patch)
tree195fefd8d197cc6156334f97c6c939da9585e621
parentd37f5b7be0d8ece8d29e020b22b3eec12b2150fa (diff)
downloadqutebrowser-0a5d92119e27c8923fd2140e6fb407acd3c04f90.tar.gz
qutebrowser-0a5d92119e27c8923fd2140e6fb407acd3c04f90.zip
importer: Stop using deprecated bs4 findAll
Fails bleeding edge CI due to warnings
-rwxr-xr-xscripts/importer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/importer.py b/scripts/importer.py
index 1914e6976..cf084d178 100755
--- a/scripts/importer.py
+++ b/scripts/importer.py
@@ -209,7 +209,7 @@ def import_html_bookmarks(bookmarks_file, bookmark_types, output_format):
}
bookmarks = []
for typ in bookmark_types:
- tags = soup.findAll(bookmark_query[typ])
+ tags = soup.find_all(bookmark_query[typ])
for tag in tags:
if typ == 'search':
tag['href'] = search_escape(tag['href']).replace('%s', '{}')