From 9b069335ebd87c3b2280b7986108654b430a494b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20Sch=C3=B6nberger?= Date: Sun, 28 Apr 2013 11:10:09 +0200 Subject: [PATCH] Fix image filename extension from .jpg to .png --- skimage/data/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/skimage/data/__init__.py b/skimage/data/__init__.py index ac55557f..2dc9fa78 100644 --- a/skimage/data/__init__.py +++ b/skimage/data/__init__.py @@ -155,7 +155,7 @@ def immunohistochemistry(): No known copyright restrictions. """ - return load("ihc.jpg") + return load("ihc.png") def chelsea(): @@ -169,4 +169,4 @@ def chelsea(): No copyright restrictions. CC0 by the photographer (Stefan van der Walt). """ - return load("chelsea.jpg") + return load("chelsea.png")