Browse Source

BUG: liquid tags notebook version check

Jake Vanderplas 11 years ago
parent
commit
ecf7c01825
1 changed files with 1 additions and 1 deletions
  1. 1 1
      liquid_tags/notebook.py

+ 1 - 1
liquid_tags/notebook.py

@@ -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