Skip to content

Commit abb1ed2

Browse files
committed
tmp
1 parent b8af421 commit abb1ed2

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

pulp_python/app/tasks/publish.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,13 @@ def write_simple_api(publication):
101101
relative_path = release["filename"]
102102
path = f"../../{relative_path}"
103103
checksum = release["sha256"]
104-
package_releases.append((relative_path, path, checksum))
104+
package_releases.append(
105+
{
106+
"filename": relative_path,
107+
"url": path,
108+
"sha256": checksum,
109+
}
110+
)
105111
# Write the final project's page
106112
write_project_page(
107113
name=canonicalize_name(current_name),

0 commit comments

Comments
 (0)