Merge pull request #121 from cgohlke/patch-2

Fix `support not installed` messages during selftest
This commit is contained in:
Alex Clark ☺ 2013-03-14 12:37:26 -07:00
commit b909f4f0da

View File

@ -157,7 +157,7 @@ def testimage():
def check_module(feature, module): def check_module(feature, module):
try: try:
__import__("PIL." + module) __import__(module)
except ImportError: except ImportError:
print("***", feature, "support not installed") print("***", feature, "support not installed")
else: else: