|  | @@ -87,7 +87,7 @@ class DecodedMail(object):
 | 
	
		
			
			| 87 | 87 |  
 | 
	
		
			
			| 88 | 88 |      @classmethod
 | 
	
		
			
			| 89 | 89 |      def _parse_html_body(cls, html_body: str):
 | 
	
		
			
			| 90 |  | -        soup = BeautifulSoup(html_body)
 | 
	
		
			
			|  | 90 | +        soup = BeautifulSoup(html_body,'html.parser')
 | 
	
		
			
			| 91 | 91 |          config = BEAUTIFULSOUP_HTML_BODY_PARSE_CONFIG
 | 
	
		
			
			| 92 | 92 |          for tag in soup.findAll():
 | 
	
		
			
			| 93 | 93 |              if DecodedMail._tag_to_extract(tag):
 |