diff options
Diffstat (limited to 'scripts/lib/devtool')
-rw-r--r-- | scripts/lib/devtool/standard.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/devtool/standard.py b/scripts/lib/devtool/standard.py index 174cc861e1..0998fa7055 100644 --- a/scripts/lib/devtool/standard.py +++ b/scripts/lib/devtool/standard.py | |||
@@ -1597,7 +1597,7 @@ def update_recipe(args, config, basepath, workspace): | |||
1597 | def status(args, config, basepath, workspace): | 1597 | def status(args, config, basepath, workspace): |
1598 | """Entry point for the devtool 'status' subcommand""" | 1598 | """Entry point for the devtool 'status' subcommand""" |
1599 | if workspace: | 1599 | if workspace: |
1600 | for recipe, value in workspace.items(): | 1600 | for recipe, value in sorted(workspace.items()): |
1601 | recipefile = value['recipefile'] | 1601 | recipefile = value['recipefile'] |
1602 | if recipefile: | 1602 | if recipefile: |
1603 | recipestr = ' (%s)' % recipefile | 1603 | recipestr = ' (%s)' % recipefile |