Skip to content

Commit 13f3824

Browse files
WEB: Sort and fix link to under discussions PDEPs (#51656)
1 parent 44e07b2 commit 13f3824

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

web/pandas_web.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -301,9 +301,9 @@ def roadmap_pdeps(context):
301301
with open(pathlib.Path(context["target_path"]) / "pdeps.json", "w") as f:
302302
json.dump(pdeps, f)
303303

304-
for pdep in pdeps["items"]:
304+
for pdep in sorted(pdeps["items"], key=operator.itemgetter("title")):
305305
context["pdeps"]["Under discussion"].append(
306-
{"title": pdep["title"], "url": pdep["url"]}
306+
{"title": pdep["title"], "url": pdep["html_url"]}
307307
)
308308

309309
return context

0 commit comments

Comments
 (0)