Skip to content

Commit

Permalink
Fix an import in Py3.
Browse files Browse the repository at this point in the history
  • Loading branch information
scoder committed Aug 4, 2020
1 parent 7240a79 commit ca10dbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lxml/html/ElementSoup.py
Expand Up @@ -3,7 +3,7 @@

__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)
Expand Down

0 comments on commit ca10dbd

Please sign in to comment.