summaryrefslogtreecommitdiff
path: root/bs4/builder/_lxml.py
diff options
context:
space:
mode:
authorLeonard Richardson <leonardr@segfault.org>2012-09-28 09:27:05 -0400
committerLeonard Richardson <leonardr@segfault.org>2012-09-28 09:27:05 -0400
commite70fd66040ef86193aa4e1b1d4d34a8e724ff666 (patch)
tree644c0e15f9620e3c84abf58691431dedd21ab06c /bs4/builder/_lxml.py
parent1da396d4045e8a7840fcac24060f66a3c147fb81 (diff)
Fixed package name.
Diffstat (limited to 'bs4/builder/_lxml.py')
-rw-r--r--bs4/builder/_lxml.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/bs4/builder/_lxml.py b/bs4/builder/_lxml.py
index f6b91ff..4c070b8 100644
--- a/bs4/builder/_lxml.py
+++ b/bs4/builder/_lxml.py
@@ -90,7 +90,6 @@ class LXMLTreeBuilderForXML(TreeBuilder):
def start(self, name, attrs, nsmap={}):
# Make sure attrs is a mutable dict--lxml may send an immutable dictproxy.
attrs = dict(attrs)
-
nsprefix = None
# Invert each namespace map as it comes in.
if len(nsmap) == 0 and self.nsmaps != None: