From: Martin v. Löwis Date: Wed, 22 Dec 2004 12:56:46 +0000 (+0000) Subject: Properly quote IDLE shortcut. Fixes #1076861. X-Git-Tag: v2.4.1c1~134 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=57212f5d54029ea6a975a4cd4ba413230595ab94;p=thirdparty%2FPython%2Fcpython.git Properly quote IDLE shortcut. Fixes #1076861. --- diff --git a/Tools/msi/msi.py b/Tools/msi/msi.py index 6ef53353787c..16f6c9901632 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 +