##// END OF EJS Templates
py3compat: execfile in sphinx conf.py
Min RK -
Show More
@@ -32,7 +32,7 b" sys.path.insert(0, os.path.abspath('../sphinxext'))"
32
32
33 # We load the ipython release info into a dict by explicit execution
33 # We load the ipython release info into a dict by explicit execution
34 iprelease = {}
34 iprelease = {}
35 execfile('../../IPython/core/release.py',iprelease)
35 exec(compile(open('../../IPython/core/release.py').read(), '../../IPython/core/release.py', 'exec'),iprelease)
36
36
37 # General configuration
37 # General configuration
38 # ---------------------
38 # ---------------------
General Comments 0
You need to be logged in to leave comments. Login now