From: Robin Dunn Date: Mon, 4 Apr 2005 23:47:05 +0000 (+0000) Subject: format the list of installed packages better X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/dad65e8abce518c5cf0bff166dbaee2b8f85d35d?ds=sidebyside format the list of installed packages better git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33339 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/distrib/mac/uninstall_wxPython.py b/wxPython/distrib/mac/uninstall_wxPython.py index 2b4ac11091..c99d301535 100755 --- a/wxPython/distrib/mac/uninstall_wxPython.py +++ b/wxPython/distrib/mac/uninstall_wxPython.py @@ -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: ")