X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/156fa22b80b900c693432960f0003db8235850e3..6a52ea5cb81dcd07c286d34b80945534780fe05f:/wxPython/distrib/mac/uninstall_wxPython.py diff --git a/wxPython/distrib/mac/uninstall_wxPython.py b/wxPython/distrib/mac/uninstall_wxPython.py index 4d85ac3e7a..c99d301535 100755 --- a/wxPython/distrib/mac/uninstall_wxPython.py +++ b/wxPython/distrib/mac/uninstall_wxPython.py @@ -24,8 +24,8 @@ RSRCDIR = "Contents/Resources" # /usr, /usr/local, etc. PREFIXES = [ '/Library/Python/2.3/', '/Library/Python/2.4/', - '/Library/Frameworks/Python.framework/Versions/2.3/lib/python2.3/site-pacakges/', - '/Library/Frameworks/Python.framework/Versions/2.4/lib/python2.4/site-pacakges/', + '/Library/Frameworks/Python.framework/Versions/2.3/lib/python2.3/site-packages/', + '/Library/Frameworks/Python.framework/Versions/2.4/lib/python2.4/site-packages/', '/usr/local/lib/', ] @@ -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: ")