Update Ubuntu URL in downloader example

This commit is contained in:
Macklan Weinstein 2020-12-30 02:51:39 -08:00
parent f61e169bd5
commit bb95ae29ec
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ def download(urls: Iterable[str], dest_dir: str):
if __name__ == "__main__":
# Try with https://releases.ubuntu.com/20.04/ubuntu-20.04-desktop-amd64.iso
# Try with https://releases.ubuntu.com/20.04/ubuntu-20.04.1-desktop-amd64.iso
if sys.argv[1:]:
download(sys.argv[1:], "./")
else: