##// END OF EJS Templates
Fix reload_extension on Python 3
Thomas Kluyver -
Show More
@@ -26,6 +26,9 b' from urlparse import urlparse'
26 26 from IPython.core.error import UsageError
27 27 from IPython.config.configurable import Configurable
28 28 from IPython.utils.traitlets import Instance
29 from IPython.utils.py3compat import PY3
30 if PY3:
31 from imp import reload
29 32
30 33 #-----------------------------------------------------------------------------
31 34 # Main class
General Comments 0
You need to be logged in to leave comments. Login now