Merge pull request #65 from jakevdp/notebook_bug

BUG: liquid tags notebook version check
This commit is contained in:
Justin Mayer
2013-08-28 12:38:19 -07:00

View File

@@ -49,7 +49,7 @@ import os
from .mdx_liquid_tags import LiquidTags
import IPython
if IPython.__version__.split('.')[0] != 1:
if IPython.__version__.split('.')[0] != '1':
raise ValueError("IPython version 1.0+ required for notebook tag")
from IPython import nbconvert