simplify output

Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
This commit is contained in:
nulano 2020-06-21 18:07:10 +01:00 committed by GitHub
parent d5a6b2584e
commit 24672a2f75
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -270,7 +270,7 @@ def pilinfo(out=None, supported_formats=True):
v = version(name)
if v is not None:
t = "compiled for" if name in ("pil", "jpg") else "loaded"
print("---", feature, "support ok,", t, "version", v, file=out)
print("---", feature, "support ok,", t, v, file=out)
else:
print("---", feature, "support ok", file=out)
else: