This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author amaury.forgeotdarc
Recipients Retro, amaury.forgeotdarc, georg.brandl, loewis
Date 2009-06-26.20:32:17
SpamBayes Score 3.1354495e-05
Marked as misclassified No
Message-id <1246048340.28.0.152522162771.issue5390@psf.upfronthosting.co.za>
In-reply-to
Content
I found the cause: in msi.py, the DisplayIcon registry variable is attached to 
"REGISTRY.def" i.e the "Register extensions" feature.
The following patch attaches it to the parent group.

Index: msi.py
===================================================================
--- msi.py	(revision 73575)
+++ msi.py	(working copy)
@@ -1258,7 +1258,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",
History
Date User Action Args
2009-06-26 20:32:20amaury.forgeotdarcsetrecipients: + amaury.forgeotdarc, loewis, georg.brandl, Retro
2009-06-26 20:32:20amaury.forgeotdarcsetmessageid: <1246048340.28.0.152522162771.issue5390@psf.upfronthosting.co.za>
2009-06-26 20:32:18amaury.forgeotdarclinkissue5390 messages
2009-06-26 20:32:17amaury.forgeotdarccreate