Use the computed name for download candidates too

This commit is contained in:
J. Nick Koston
2026-08-27 15:26:29 -05:00
parent 7cc892ea14
commit 3f65f5c12c
+1 -1
View File
@@ -406,7 +406,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] = []