Merge pull request #156 from tonysyu/fix-tifffile-test

BUG: Fix test when tifffile plugin is not available.
This commit is contained in:
Stefan van der Walt
2012-02-26 12:05:30 -08:00
+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