Fix urls in LTS script.

The urls were missing /release/, leading to 404 links on the LTS download page.
This commit is contained in:
Thomas Dinges 2023-01-18 10:38:01 +01:00
parent 60d9de767d
commit c1d360f7fb
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ def get_download_url(version: Version, file_name: str) -> str:
"""
Get the download url for the given version and file_name
"""
return (f"https://www.blender.org/download/Blender{version.major}"
return (f"https://www.blender.org/download/release/Blender{version.major}"
f".{version.minor}/{file_name}")