Skip to content

Commit

Permalink
Merge pull request #4300 from Carreau/fix-4299
Browse files Browse the repository at this point in the history
Traits defauts should be strings not object
  • Loading branch information
Carreau committed Sep 29, 2013
2 parents 7c6cced + d66295f commit 89e5914
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions IPython/nbconvert/exporters/exporter.py
Expand Up @@ -62,13 +62,13 @@ class Exporter(LoggingConfigurable):

_preprocessors = None

default_preprocessors = List([nbpreprocessors.coalesce_streams,
nbpreprocessors.SVG2PDFPreprocessor,
nbpreprocessors.ExtractOutputPreprocessor,
nbpreprocessors.CSSHTMLHeaderPreprocessor,
nbpreprocessors.RevealHelpPreprocessor,
nbpreprocessors.LatexPreprocessor,
nbpreprocessors.HighlightMagicsPreprocessor],
default_preprocessors = List(['IPython.nbconvert.preprocessors.coalesce_streams',
'IPython.nbconvert.preprocessors.SVG2PDFPreprocessor',
'IPython.nbconvert.preprocessors.ExtractOutputPreprocessor',
'IPython.nbconvert.preprocessors.CSSHTMLHeaderPreprocessor',
'IPython.nbconvert.preprocessors.RevealHelpPreprocessor',
'IPython.nbconvert.preprocessors.LatexPreprocessor',
'IPython.nbconvert.preprocessors.HighlightMagicsPreprocessor'],
config=True,
help="""List of preprocessors available by default, by name, namespace,
instance, or type.""")
Expand Down

0 comments on commit 89e5914

Please sign in to comment.