summaryrefslogtreecommitdiffstats
path: root/Tools
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2004-12-22 12:55:44 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2004-12-22 12:55:44 (GMT)
commitac191dac9abad6f4833fe99233079b4a461d853c (patch)
treee9cba67e78ea922bdbb4f55605d516087a16ddb7 /Tools
parent3673369951f1bb8eff5b23f9a621563015b4362b (diff)
downloadcpython-ac191dac9abad6f4833fe99233079b4a461d853c.zip
cpython-ac191dac9abad6f4833fe99233079b4a461d853c.tar.gz
cpython-ac191dac9abad6f4833fe99233079b4a461d853c.tar.bz2
Properly quote IDLE shortcut. Will backport to 2.4.
Diffstat (limited to 'Tools')
-rw-r--r--Tools/msi/msi.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Tools/msi/msi.py b/Tools/msi/msi.py
index 6ef5335..16f6c99 100644
--- a/Tools/msi/msi.py
+++ b/Tools/msi/msi.py
@@ -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 +