1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

Fix compatibility with python 2 tests

There are still tests that use python 2, which doesn't have html.parser. In that
case a correct name of the module is imported.
This commit is contained in:
Roderik Ploszek 2018-02-19 13:31:16 +01:00
parent 806e3a5153
commit 0b5298f948

View file

@ -4,7 +4,11 @@ See the HTML 2.0 specification:
http://www.w3.org/hypertext/WWW/MarkUp/html-spec/html-spec_toc.html
"""
import html.parser as htmllib
try:
import html.parser as htmllib
except ImportError:
# For Python 2 tests compatibility
import HTMLParser as htmllib
from formatter import AS_IS