Minor formatting of error message

This commit is contained in:
Steven Silvester
2014-09-19 19:40:41 -05:00
parent 53760e3d87
commit 8758ce9f93
+1 -1
View File
@@ -34,7 +34,7 @@ def imread(fname, dtype=None):
im.getdata()[0]
except IOError:
site = "http://pillow.readthedocs.org/en/latest/installation.html#external-libraries"
raise ValueError('Could not load "%s"\nPlease see documentation at %s' % (fname, site))
raise ValueError('Could not load "%s"\nPlease see documentation at: %s' % (fname, site))
else:
return pil_to_ndarray(im, dtype)