diff options
| author | dd <dd@wx.tnyzeq.icu> | 2025-03-07 14:25:42 +0100 |
|---|---|---|
| committer | dd <dd@wx.tnyzeq.icu> | 2025-03-07 14:25:42 +0100 |
| commit | 2a919538ed75d17fd3f2387d765e74e9f41a7d0e (patch) | |
| tree | 2dfec0922c658d9ad8e76ac27f12c9510b4938a8 /new/lib/github.py | |
| parent | 815dc82222e0a1e6b05d898513c98f2d08ab4bc1 (diff) | |
| download | vyos-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.py | 2 |
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): |
