Skip to content

Commit

Permalink
Merge pull request #873 from elgalu/fix-unknown-exporter-ipynb-issue-…
Browse files Browse the repository at this point in the history
…3769

Fix Unknown exporter "ipynb"
  • Loading branch information
blink1073 committed Sep 2, 2018
2 parents caf130e + cae13ff commit cf59239
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions nbconvert/exporters/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,9 @@ def get_exporter(name):
Raises ValueError if exporter is not found
"""

if name == 'ipynb':
name = 'notebook'

try:
return entrypoints.get_single('nbconvert.exporters', name).load()
Expand Down

0 comments on commit cf59239

Please sign in to comment.