Fix ImageMagick Detection

The `return` statement was at the wrong indent level, so we never checked for the legacy `convert` executable
This commit is contained in:
Filipe Fortes 2019-05-17 15:02:18 -04:00 committed by GitHub
parent a34f19e01c
commit 299cb53e44
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -278,7 +278,7 @@ def get_im_version():
int(match.group(3)))
return version, legacy
return None
return None
def get_pil_version():