diff options
author | Bryan O'Sullivan <bos@lindenlab.com> | 2008-06-23 21:16:15 +0000 |
---|---|---|
committer | Bryan O'Sullivan <bos@lindenlab.com> | 2008-06-23 21:16:15 +0000 |
commit | 4642d22071bb4a03070ab5f966a3b575d570dcd1 (patch) | |
tree | 780a2aa4e3737841c4b5833d967db53d64771942 /scripts | |
parent | dc3f5ff87cfa085998bf69db6dedad45440419d3 (diff) |
Make the output of install.py --list readable
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/install.py | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/scripts/install.py b/scripts/install.py index ea32f0b8aa..9f7945264d 100755 --- a/scripts/install.py +++ b/scripts/install.py @@ -880,10 +880,18 @@ def main(): # Handle the queries for information # if options.list_installed: - print "installed list:", installer.list_installed() + print "installed list:" + inst = installer.list_installed() + inst.sort() + for i in inst: + print ' ', i return 0 if options.list_installables: - print "installable list:", installer.list_installables() + print "installable list:", + inst = installer.list_installables() + inst.sort() + for i in inst: + print ' ', i return 0 if options.detail_installable: try: |