Fixing import for nbconvert.

This commit is contained in:
Brian E. Granger 2013-06-30 15:04:09 -07:00 committed by MinRK
parent c7355b8ba7
commit 390717c53a

View File

@ -15,14 +15,13 @@ Python exporter which exports Notebook code into a PY file.
from IPython.utils.traitlets import Unicode
# local import
import exporter
from .exporter import Exporter
#-----------------------------------------------------------------------------
# Classes
#-----------------------------------------------------------------------------
class PythonExporter(exporter.Exporter):
class PythonExporter(Exporter):
"""
Exports a Python code file.
"""