diff options
author | Leonard Richardson <leonard.richardson@canonical.com> | 2012-02-21 13:41:58 -0500 |
---|---|---|
committer | Leonard Richardson <leonard.richardson@canonical.com> | 2012-02-21 13:41:58 -0500 |
commit | 2b6af1e6204461e89338ae452c3bc742d0d1fa0f (patch) | |
tree | 01137ff6d0d0008607170b64fccf04cbaa504544 /bs4/__init__.py | |
parent | 2ccae07967bb15f6bad6ba262411ac47bcbb98e7 (diff) |
Have lxml invert namespace maps as they come in and set each tag's prefix appropriately.
Diffstat (limited to 'bs4/__init__.py')
-rw-r--r-- | bs4/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bs4/__init__.py b/bs4/__init__.py index 7007796..2dd0521 100644 --- a/bs4/__init__.py +++ b/bs4/__init__.py @@ -281,7 +281,7 @@ class BeautifulSoup(Tag): don't call handle_endtag. """ - #print "Start tag %s: %s" % (name, attrs) + # print "Start tag %s: %s" % (name, attrs) self.endData() if (self.parse_only and len(self.tagStack) <= 1 |