1
0
Fork 0
mirror of https://github.com/evilhero/mylar synced 2024-12-23 16:22:45 +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

@ -187,9 +187,9 @@ def update():
except (IOError, URLError):
logger.error("Unable to retrieve new version from "+tar_download_url+", can't update")
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)
# Save tar to disk