Fix test when tifffile plugin is not available.

This commit is contained in:
Tony S Yu
2012-02-26 10:38:22 -05:00
parent 2f9a7bd78a
commit 5e7f08ef8f
+1 -1
View File
@@ -12,7 +12,7 @@ try:
_plugins = sio.plugin_order()
TF_available = True
sio.use_plugin('tifffile')
except OSError:
except ImportError:
TF_available = False