]> granicus.if.org Git - python/commitdiff
Properly quote IDLE shortcut. Will backport to 2.4.
authorMartin v. Löwis <martin@v.loewis.de>
Wed, 22 Dec 2004 12:55:44 +0000 (12:55 +0000)
committerMartin v. Löwis <martin@v.loewis.de>
Wed, 22 Dec 2004 12:55:44 +0000 (12:55 +0000)
Tools/msi/msi.py

index 6ef53353787c37897d9ac80c4717b1a59575f39b..16f6c990163281bf72ec3ff9db076d5d6acfff9a 100644 (file)
@@ -1080,9 +1080,9 @@ def add_registry(db):
     if have_tcl:
         tcltkshortcuts = [
               ("IDLE", "MenuDir", "IDLE|IDLE (Python GUI)", "pythonw.exe",
-               tcltk.id, r"[TARGETDIR]Lib\idlelib\idle.pyw", None, None, "python_icon.exe", 0, None, "TARGETDIR"),
+               tcltk.id, r'"[TARGETDIR]Lib\idlelib\idle.pyw"', None, None, "python_icon.exe", 0, None, "TARGETDIR"),
               ("PyDoc", "MenuDir", "MODDOCS|Module Docs", "pythonw.exe",
-               tcltk.id, r"[TARGETDIR]Tools\scripts\pydocgui.pyw", None, None, "python_icon.exe", 0, None, "TARGETDIR"),
+               tcltk.id, r'"[TARGETDIR]Tools\scripts\pydocgui.pyw"', None, None, "python_icon.exe", 0, None, "TARGETDIR"),
               ]
     add_data(db, "Shortcut",
              tcltkshortcuts +