summaryrefslogtreecommitdiff
path: root/new/lib/github.py
diff options
context:
space:
mode:
authordd <dd@wx.tnyzeq.icu>2025-03-07 14:25:42 +0100
committerdd <dd@wx.tnyzeq.icu>2025-03-07 14:25:42 +0100
commit2a919538ed75d17fd3f2387d765e74e9f41a7d0e (patch)
tree2dfec0922c658d9ad8e76ac27f12c9510b4938a8 /new/lib/github.py
parent815dc82222e0a1e6b05d898513c98f2d08ab4bc1 (diff)
downloadvyos-jenkins-2a919538ed75d17fd3f2387d765e74e9f41a7d0e.tar.gz
vyos-jenkins-2a919538ed75d17fd3f2387d765e74e9f41a7d0e.zip
circinus: improved package order
Diffstat (limited to 'new/lib/github.py')
-rw-r--r--new/lib/github.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/new/lib/github.py b/new/lib/github.py
index 6f1e5da..ef0ceaf 100644
--- a/new/lib/github.py
+++ b/new/lib/github.py
@@ -159,7 +159,7 @@ class GitHub:
for extra_package, info in self.extra_packages[branch].items():
packages[extra_package] = info
- packages = dict(sorted(packages.items()))
+ packages = dict(sorted(packages.items(), key=lambda item: item[1]["package_name"]))
return packages
def find_org_repositories(self, name):