Fixed download url

This commit is contained in:
2019-04-19 23:03:32 -04:00
parent e94e3a6da5
commit a4fcdd2629

View File

@@ -36,7 +36,7 @@ def downloadImagemagick():
if not os.path.isfile(getImagemagickExe()):
print("ImageMagick does not exist. Downloading now...")
if(os.name == "nt"):
urllib.request.urlretrieve ("https://imagemagick.org/download/binaries/ImageMagick-7.0.8-14-portable-Q16-x64.zip", "imagemagick.zip")
urllib.request.urlretrieve ("https://imagemagick.org/download/binaries/ImageMagick-7.0.8-15-portable-Q16-x64.zip", "imagemagick.zip")
zipfile.ZipFile("imagemagick.zip","r").extractall(getImagemagickPath())
os.remove("imagemagick.zip")
elif(sys.platform == "darwin"):