Exporter -> TemplateExporter / BaseExporter

This commit is contained in:
Matthias BUSSONNIER 2013-08-16 09:26:25 +02:00 committed by Jonathan Frederic
parent 4fc0465f42
commit 8c6665ab4c

View File

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