format the list of installed packages better

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33339 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn 2005-04-04 23:47:05 +00:00
parent 0bcec69183
commit dad65e8abc

View File

@ -201,7 +201,7 @@ def main():
sys.exit()
for i, inst in enumerate(installed):
print " %d. %s \t%s" % (i+1, inst.mdata["Title"], inst.mdata["Version"])
print " %2d. %-40s %s" % (i+1, inst.mdata["Title"], inst.mdata["Version"])
print
ans = raw_input("Enter the number of the install to examine or 'Q' to quit: ")