From 16b935ce33969261d7940fe56c106162079d45cc Mon Sep 17 00:00:00 2001 From: David Lynch Date: Fri, 24 Apr 2026 11:03:49 -0500 Subject: [PATCH] Remove hardcoded `lxml` in xenforo Follow-up to 4d9c31b6ac5e024b303a87d6c7cfd78487709fdd --- sites/xenforo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sites/xenforo.py b/sites/xenforo.py index 27be6c4..d858592 100644 --- a/sites/xenforo.py +++ b/sites/xenforo.py @@ -261,7 +261,7 @@ class XenForo(Site): # create a proper post-url, because threadmarks can sometimes # mess up page-wise with anchors url = self.siteurl(f'posts/{postid}/') - soup, base = self._soup(url, 'lxml') + soup, base = self._soup(url) if postid: return self._posts_from_page(soup, postid), base