##// END OF EJS Templates
Fix imports in IPython.html.utils
Thomas Kluyver -
Show More
@@ -13,7 +13,10 b' Authors:'
13 #-----------------------------------------------------------------------------
13 #-----------------------------------------------------------------------------
14
14
15 import os
15 import os
16 from urllib import quote, unquote
16 try:
17 from urllib.parse import quote, unquote
18 except ImportError:
19 from urllib import quote, unquote
17
20
18 from IPython.utils import py3compat
21 from IPython.utils import py3compat
19
22
General Comments 0
You need to be logged in to leave comments. Login now