summaryrefslogtreecommitdiff
path: root/bs4/builder/_html5lib.py
diff options
context:
space:
mode:
authorLeonard Richardson <leonard.richardson@canonical.com>2012-02-08 20:37:36 -0500
committerLeonard Richardson <leonard.richardson@canonical.com>2012-02-08 20:37:36 -0500
commit600f332672763518033de253997a6e21fde07f44 (patch)
treebe74ff51b42e00e258bf34ff4bb2c83d76ae03b3 /bs4/builder/_html5lib.py
parent33f0db7b3c4eef632700418068769b9cb762f708 (diff)
Added missing import.
Diffstat (limited to 'bs4/builder/_html5lib.py')
-rw-r--r--bs4/builder/_html5lib.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/bs4/builder/_html5lib.py b/bs4/builder/_html5lib.py
index e9d7f58..11fcc0d 100644
--- a/bs4/builder/_html5lib.py
+++ b/bs4/builder/_html5lib.py
@@ -9,7 +9,10 @@ from bs4.builder import (
HTMLTreeBuilder,
)
import html5lib
-from html5lib.constants import DataLossWarning
+from html5lib.constants import (
+ DataLossWarning,
+ namespaces,
+ )
import warnings
from bs4.element import (
Comment,