From 02b5ce0479e37d9ce9ebe7bd942ab4d326e7aab5 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Mon, 31 Oct 2016 11:09:40 -0400 Subject: [PATCH] Remove redundant space in PIL.Image ImportError message --- PIL/Image.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PIL/Image.py b/PIL/Image.py index fa743c602..92b6164e8 100644 --- a/PIL/Image.py +++ b/PIL/Image.py @@ -67,7 +67,7 @@ try: from PIL import _imaging as core if PILLOW_VERSION != getattr(core, 'PILLOW_VERSION', None): raise ImportError("The _imaging extension was built for another " - " version of Pillow or PIL") + "version of Pillow or PIL") except ImportError as v: core = _imaging_not_installed()