summaryrefslogtreecommitdiff
path: root/src/lxml/html
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2020-08-04 18:19:28 +0200
committerStefan Behnel <stefan_ml@behnel.de>2020-08-04 18:19:28 +0200
commitca10dbdbcc96e8b012ba67222a36df64c17577e2 (patch)
treec349bfd4a26c8e0a8af4dac369e0667c72c28223 /src/lxml/html
parent7240a79e32638b760dfd1cfc9464726e6ead1688 (diff)
downloadpython-lxml-ca10dbdbcc96e8b012ba67222a36df64c17577e2.tar.gz
Fix an import in Py3.
Diffstat (limited to 'src/lxml/html')
-rw-r--r--src/lxml/html/ElementSoup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lxml/html/ElementSoup.py b/src/lxml/html/ElementSoup.py
index 8e4fde13..c35365d0 100644
--- a/src/lxml/html/ElementSoup.py
+++ b/src/lxml/html/ElementSoup.py
@@ -3,7 +3,7 @@ __doc__ = """Legacy interface to the BeautifulSoup HTML parser.
__all__ = ["parse", "convert_tree"]
-from soupparser import convert_tree, parse as _parse
+from .soupparser import convert_tree, parse as _parse
def parse(file, beautifulsoup=None, makeelement=None):
root = _parse(file, beautifulsoup=beautifulsoup, makeelement=makeelement)