Use the computed name for download candidates too

This commit is contained in:
J. Nick Koston
2026-09-17 08:48:37 -05:00
parent a595344d7a
commit 15d47eaee0
+1 -1
View File
@@ -423,7 +423,7 @@ def _uri_jobs(
if str(dl_path) in seen:
continue # another spec already claimed this .part
seen.add(str(dl_path))
candidates.append((spec.name, url, dl_path, spec))
candidates.append((name, url, dl_path, spec))
errors: list[str] = []