Skip to content

Commit

Permalink
Merge pull request #10868 from jorisvandenbossche/doc-ipython-sphinxe…
Browse files Browse the repository at this point in the history
…xt-update

DOC: update ipython sphinxext for IPython 4.0
  • Loading branch information
jorisvandenbossche committed Aug 23, 2015
2 parents a44e4b3 + 6ee9f53 commit c399b9e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion doc/sphinxext/ipython_sphinxext/ipython_directive.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,11 @@
from sphinx.util.compat import Directive

# Our own
from IPython import Config, InteractiveShell
try:
from traitlets.config import Config
except ImportError:
from IPython import Config
from IPython import InteractiveShell
from IPython.core.profiledir import ProfileDir
from IPython.utils import io
from IPython.utils.py3compat import PY3
Expand Down

0 comments on commit c399b9e

Please sign in to comment.