diff options
Diffstat (limited to 'src/lxml')
| -rw-r--r-- | src/lxml/html/ElementSoup.py | 2 |
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) |
