From 7705939bb94a4df0693a03fdc4ce2a4650080941 2015-04-30 17:28:43 From: Thomas Kluyver Date: 2015-04-30 17:28:43 Subject: [PATCH] Fix missing comma --- diff --git a/IPython/nbconvert/exporters/exporter.py b/IPython/nbconvert/exporters/exporter.py index a71bc03..bd7d1c6 100644 --- a/IPython/nbconvert/exporters/exporter.py +++ b/IPython/nbconvert/exporters/exporter.py @@ -73,7 +73,7 @@ class Exporter(LoggingConfigurable): 'IPython.nbconvert.preprocessors.CSSHTMLHeaderPreprocessor', 'IPython.nbconvert.preprocessors.RevealHelpPreprocessor', 'IPython.nbconvert.preprocessors.LatexPreprocessor', - 'IPython.nbconvert.preprocessors.HighlightMagicsPreprocessor' + 'IPython.nbconvert.preprocessors.HighlightMagicsPreprocessor', 'IPython.nbconvert.preprocessors.ExtractOutputPreprocessor', ], config=True,