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