diff options
Diffstat (limited to 'scripts/lib/devtool/upgrade.py')
-rw-r--r-- | scripts/lib/devtool/upgrade.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/devtool/upgrade.py b/scripts/lib/devtool/upgrade.py index 9abf72eccf..0dace1fb24 100644 --- a/scripts/lib/devtool/upgrade.py +++ b/scripts/lib/devtool/upgrade.py | |||
@@ -670,7 +670,7 @@ def check_upgrade_status(args, config, basepath, workspace): | |||
670 | currents = [r for r in recipegroup if r['status'] == 'MATCH'] | 670 | currents = [r for r in recipegroup if r['status'] == 'MATCH'] |
671 | if len(upgrades) > 1: | 671 | if len(upgrades) > 1: |
672 | print("These recipes need to be upgraded together {") | 672 | print("These recipes need to be upgraded together {") |
673 | for r in upgrades: | 673 | for r in sorted(upgrades, key=lambda r:r['pn']): |
674 | _print_status(r) | 674 | _print_status(r) |
675 | if len(upgrades) > 1: | 675 | if len(upgrades) > 1: |
676 | print("}") | 676 | print("}") |