From b80c4201fc48617742c49411278b1853fb779a35 Mon Sep 17 00:00:00 2001 From: Leonard Richardson Date: Sat, 30 May 2020 14:30:58 -0400 Subject: Remove explicit reference to the module name within the module, replacing it with __name__. --- bs4/builder/_htmlparser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bs4/builder/_htmlparser.py') diff --git a/bs4/builder/_htmlparser.py b/bs4/builder/_htmlparser.py index 1cb84ff..96a7b7d 100644 --- a/bs4/builder/_htmlparser.py +++ b/bs4/builder/_htmlparser.py @@ -181,7 +181,7 @@ class BeautifulSoupHTMLParser(HTMLParser): # This is a redundant end tag for an empty-element tag. # We've already called handle_endtag() for it, so just # check it off the list. - # print("ALREADY CLOSED", name) + #print("ALREADY CLOSED", name) self.already_closed_empty_element.remove(name) else: self.soup.handle_endtag(name) -- cgit v1.2.3