Skip to content

Commit

Permalink
trying to fix import errors on rtd.org
Browse files Browse the repository at this point in the history
  • Loading branch information
ashutoshdtu committed Feb 23, 2019
1 parent d24717d commit d60aafe
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/eazyserver/core/utils.py
Expand Up @@ -3,7 +3,11 @@
logger.debug("Loaded " + __name__)

import json
import HTMLParser
import sys
if sys.version_info[0] >= 3:
from html.parser import HTMLParser
else:
import HTMLParser
from bson import json_util
from bson.son import SON
from bson.objectid import ObjectId
Expand Down

0 comments on commit d60aafe

Please sign in to comment.