1
0
Fork 0
mirror of https://github.com/evilhero/mylar synced 2024-12-24 16:51:42 +00:00

FIX:(#235) Problem with windows updates - sanitizing the tar filename

This commit is contained in:
evilhero 2013-02-28 13:03:26 -05:00
parent 1169196a96
commit 8ce830d703

View file

@ -188,8 +188,8 @@ def update():
logger.error("Unable to retrieve new version from "+tar_download_url+", can't update") logger.error("Unable to retrieve new version from "+tar_download_url+", can't update")
return return
download_name = data.geturl().split('/')[-1] #try sanitizing the name here...
download_name = data.geturl().split('/')[-1].split('?')[0]
tar_download_path = os.path.join(mylar.PROG_DIR, download_name) tar_download_path = os.path.join(mylar.PROG_DIR, download_name)
# Save tar to disk # Save tar to disk