diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2009-06-28 09:36:14 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2009-06-28 09:36:14 (GMT) |
commit | 95c460187043204823d11dbe2d06dae823d024dd (patch) | |
tree | 87c6183b88be97c6aacac60f69e042ff96fd28f3 /Tools/msi/msi.py | |
parent | 876b2f286b9af1a69846c84d1229014b2a885c97 (diff) | |
download | cpython-95c460187043204823d11dbe2d06dae823d024dd.zip cpython-95c460187043204823d11dbe2d06dae823d024dd.tar.gz cpython-95c460187043204823d11dbe2d06dae823d024dd.tar.bz2 |
Merged revisions 73598 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r73598 | martin.v.loewis | 2009-06-28 11:32:39 +0200 (So, 28 Jun 2009) | 3 lines
Issue 5390: Add uninstall icon independent of whether file
extensions are installed.
........
Diffstat (limited to 'Tools/msi/msi.py')
-rw-r--r-- | Tools/msi/msi.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/msi/msi.py b/Tools/msi/msi.py index 95c07bc..d6a2048 100644 --- a/Tools/msi/msi.py +++ b/Tools/msi/msi.py @@ -1258,7 +1258,7 @@ def add_registry(db): "", 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", |