Use the computed name for download candidates too

This commit is contained in:
J. Nick Koston
2026-09-08 17:59:23 +02:00
parent fbabe13dc8
commit 3ff9f3f2af
+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] = []