Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion jupyter_notebook/nbconvert/handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def get_exporter(format, **kwargs):
"""get an exporter, raising appropriate errors"""
# if this fails, will raise 500
try:
from jupyter_nbconvert.exporters.export import exporter_map
from nbconvert.exporters.export import exporter_map
except ImportError as e:
raise web.HTTPError(500, "Could not import nbconvert: %s" % e)

Expand Down
2 changes: 1 addition & 1 deletion jupyter_notebook/services/contents/filemanager.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def _post_save_script(model, os_path, contents_manager, **kwargs):

replaces `ipython notebook --script`
"""
from jupyter_nbconvert.exporters.script import ScriptExporter
from nbconvert.exporters.script import ScriptExporter

if model['type'] != 'notebook':
return
Expand Down
2 changes: 1 addition & 1 deletion jupyter_notebook/services/nbconvert/handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class NbconvertRootHandler(IPythonHandler):
@json_errors
def get(self):
try:
from jupyter_nbconvert.exporters.export import exporter_map
from nbconvert.exporters.export import exporter_map
except ImportError as e:
raise web.HTTPError(500, "Could not import nbconvert: %s" % e)
res = {}
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
-e git+https://github.com/jupyter/jupyter_client.git#egg=jupyter_client
-e git+https://github.com/ipython/ipython.git#egg=ipython
-e git+https://github.com/ipython/ipython_kernel.git#egg=ipython_kernel
-e git+https://github.com/jupyter/jupyter_nbconvert.git#egg=jupyter_nbconvert
-e git+https://github.com/jupyter/nbconvert.git#egg=nbconvert
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@
'jupyter_core',
'jupyter_client',
'jupyter_nbformat',
'jupyter_nbconvert',
'nbconvert',
'ipython_kernel', # bless IPython kernel for now
]
extras_require = {
Expand Down