diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2009-05-05 16:10:16 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2009-05-05 16:10:16 (GMT) |
commit | 588b54b646ff3ca7e86e5b493e01f60b449d2246 (patch) | |
tree | 07ecc3735742050564b76f0c34c2c9bff26fdf51 /Tools | |
parent | cecdc9c0e056ebd444077fd9eaf9bf82a4a4e818 (diff) | |
download | cpython-588b54b646ff3ca7e86e5b493e01f60b449d2246.zip cpython-588b54b646ff3ca7e86e5b493e01f60b449d2246.tar.gz cpython-588b54b646ff3ca7e86e5b493e01f60b449d2246.tar.bz2 |
Issue #5847: Remove -n switch on "Edit with IDLE" menu item.
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/msi/msi.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Tools/msi/msi.py b/Tools/msi/msi.py index 38d57ed..de61914 100644 --- a/Tools/msi/msi.py +++ b/Tools/msi/msi.py @@ -1187,10 +1187,10 @@ def add_registry(db): if have_tcl: tcl_verbs=[ ("py.IDLE", -1, pat % (testprefix, "", ewi), "", - r'"[TARGETDIR]pythonw.exe" "[TARGETDIR]Lib\idlelib\idle.pyw" -n -e "%1"', + r'"[TARGETDIR]pythonw.exe" "[TARGETDIR]Lib\idlelib\idle.pyw" -e "%1"', "REGISTRY.tcl"), ("pyw.IDLE", -1, pat % (testprefix, "NoCon", ewi), "", - r'"[TARGETDIR]pythonw.exe" "[TARGETDIR]Lib\idlelib\idle.pyw" -n -e "%1"', + r'"[TARGETDIR]pythonw.exe" "[TARGETDIR]Lib\idlelib\idle.pyw" -e "%1"', "REGISTRY.tcl"), ] add_data(db, "Registry", |