From 4c09df20025e8757a7c3c003bfdcd78d0281fb3a 2012-07-15 22:35:42 From: Takafumi Arakaki Date: 2012-07-15 22:35:42 Subject: [PATCH] Fix how LaTeXTool is initialized --- diff --git a/IPython/core/interactiveshell.py b/IPython/core/interactiveshell.py index 07ed237..8b6dee9 100644 --- a/IPython/core/interactiveshell.py +++ b/IPython/core/interactiveshell.py @@ -694,7 +694,7 @@ class InteractiveShell(SingletonConfigurable): def init_latextool(self): """Configure LaTeXTool.""" - cfg = LaTeXTool(config=self.config) + cfg = LaTeXTool.instance(config=self.config) if cfg not in self.configurables: self.configurables.append(cfg)