[Python-checkins] r73598 - in python/trunk: Misc/NEWS Tools/msi/msi.py

martin.v.loewis python-checkins at python.org
Sun Jun 28 11:32:39 CEST 2009


Author: martin.v.loewis
Date: Sun Jun 28 11:32:39 2009
New Revision: 73598

Log:
Issue 5390: Add uninstall icon independent of whether file
extensions are installed.


Modified:
   python/trunk/Misc/NEWS
   python/trunk/Tools/msi/msi.py

Modified: python/trunk/Misc/NEWS
==============================================================================
--- python/trunk/Misc/NEWS	(original)
+++ python/trunk/Misc/NEWS	Sun Jun 28 11:32:39 2009
@@ -1060,6 +1060,9 @@
 Build
 -----
 
+- Issue 5390: Add uninstall icon independent of whether file
+  extensions are installed.
+
 - Issue 5809: Specifying both --enable-framework and --enable-shared is
   an error. Configure now explicity tells you about this.
 

Modified: python/trunk/Tools/msi/msi.py
==============================================================================
--- python/trunk/Tools/msi/msi.py	(original)
+++ python/trunk/Tools/msi/msi.py	Sun Jun 28 11:32:39 2009
@@ -1257,7 +1257,7 @@
                "", r"[TARGETDIR]Python.exe", "REGISTRY.def"),
               ("DisplayIcon", -1,
                r"Software\Microsoft\Windows\CurrentVersion\Uninstall\%s" % product_code,
-               "DisplayIcon", "[TARGETDIR]python.exe", "REGISTRY.def")
+               "DisplayIcon", "[TARGETDIR]python.exe", "REGISTRY")
               ])
     # Shortcuts, see "Shortcut Table"
     add_data(db, "Directory",


More information about the Python-checkins mailing list