##// END OF EJS Templates
Rename utils.config to utils.base
Jonathan Frederic -
Show More
@@ -17,7 +17,7 b' NbConvertBase.display_data_priority'
17 17 # Classes and functions
18 18 #-----------------------------------------------------------------------------
19 19
20 from ..utils.config import NbConvertBase
20 from ..utils.base import NbConvertBase
21 21
22 22 __all__ = ['DataTypeFilter']
23 23
@@ -31,7 +31,7 b' from IPython.utils.importstring import import_item'
31 31 from .exporters.export import export_by_name, get_export_names, ExporterNameError
32 32 from .exporters.exporter import Exporter
33 33 from .writers.base import WriterBase
34 from .utils.config import NbConvertBase
34 from .utils.base import NbConvertBase
35 35
36 36 #-----------------------------------------------------------------------------
37 37 #Classes and functions
@@ -16,7 +16,7 b' It exposes a convenient class to inherit from to access configurability.'
16 16 # Imports
17 17 #-----------------------------------------------------------------------------
18 18
19 from ..utils.config import NbConvertBase
19 from ..utils.base import NbConvertBase
20 20 from IPython.utils.traitlets import Bool
21 21
22 22 #-----------------------------------------------------------------------------
1 NO CONTENT: file renamed from IPython/nbconvert/utils/config.py to IPython/nbconvert/utils/base.py
@@ -16,7 +16,7 b' Contains writer base class.'
16 16
17 17 from IPython.utils.traitlets import List
18 18
19 from ..utils.config import NbConvertBase
19 from ..utils.base import NbConvertBase
20 20
21 21 #-----------------------------------------------------------------------------
22 22 # Classes
General Comments 0
You need to be logged in to leave comments. Login now