Skip to content

Commit 7c02f5d

Browse files
authored
Don't explicitly specify parser so we use the best available. Fixes #68 (#78)
1 parent 440acf1 commit 7c02f5d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/fb2cal.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -542,7 +542,7 @@ def parse_birthday_day_month(tooltip_content, name, user_locale):
542542
cur_date = datetime.now()
543543

544544
# Use beautiful soup to parse special html codes properly before matching with our dict
545-
day_name = BeautifulSoup(birthday_date_str, 'lxml').get_text().lower()
545+
day_name = BeautifulSoup(birthday_date_str).get_text().lower()
546546

547547
if day_name in offset_dict:
548548
cur_date = cur_date + relativedelta(days=offset_dict[day_name])

0 commit comments

Comments
 (0)