And another python2/3 issue

master
Bradlee Speice 2016-08-08 19:29:25 -04:00
parent f87653913e
commit 36c7f37514
1 changed files with 3 additions and 0 deletions

View File

@ -7,9 +7,12 @@ import logging
try:
from urllib.parse import quote_plus
from html.parser import HTMLParser
except ImportError:
# noinspection PyUnresolvedReferences
from urllib import quote_plus
# noinspection PyUnresolvedReferences
from HTMLParser import HTMLParser
class BloombergEquityInfo(Task):