Merge branch 'devel' of https://github.com/quintusdias/glymur into devel

This commit is contained in:
jevans 2013-08-15 20:11:56 -04:00
commit b333eb0cd6

View file

@ -29,6 +29,12 @@ NO_READ_BACKEND_MSG += "order to run the tests in this suite."
try:
from matplotlib.pyplot import imread
# The whole point of trying to import PIL is to determine if it's there
# or not. We won't use it directly.
# pylint: disable=F0401,W0611
import PIL
NO_READ_BACKEND = False
except ImportError:
NO_READ_BACKEND = True