Remove redundant space in PIL.Image ImportError message

This commit is contained in:
Tim Graham 2016-10-31 11:09:40 -04:00
parent bb2f479c62
commit 02b5ce0479

View File

@ -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()