From e0f4cd097817342ed0ed5cf4b40bd429f8782221 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20Sch=C3=B6nberger?= Date: Sat, 15 Dec 2012 19:35:49 +0100 Subject: [PATCH] Fix double space in warning message --- skimage/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skimage/__init__.py b/skimage/__init__.py index 5a84dd68..1435892c 100644 --- a/skimage/__init__.py +++ b/skimage/__init__.py @@ -71,7 +71,7 @@ except ImportError: """This would invoke the skimage test suite, but nose couldn't be imported so the test suite can not run. """ - raise ImportError("Could not load nose. Unit tests not available.") + raise ImportError("Could not load nose. Unit tests not available.") else: def test(verbose=False): """Invoke the skimage test suite."""