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:
parent
806e3a5153
commit
0b5298f948
1 changed files with 5 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue