Skip to content

Commit 0b2eddf

Browse files
committed
fix for #1076
1 parent a4d0bee commit 0b2eddf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

O365/calendar.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1593,7 +1593,7 @@ def get_body_soup(self):
15931593
:return: Html body
15941594
:rtype: BeautifulSoup
15951595
"""
1596-
if self.body_type != 'HTML':
1596+
if self.body_type.upper() != 'HTML':
15971597
return None
15981598
else:
15991599
return bs(self.body, 'html.parser')

0 commit comments

Comments
 (0)