Fix imports in IPython.html.utils

pull/37/head
Thomas Kluyver 13 years ago
parent 79c0712752
commit 9fd838d624

@ -13,7 +13,10 @@ Authors:
#-----------------------------------------------------------------------------
import os
from urllib import quote, unquote
try:
from urllib.parse import quote, unquote
except ImportError:
from urllib import quote, unquote
from IPython.utils import py3compat

Loading…
Cancel
Save