diff options
| author | Łukasz Langa <lukasz@langa.pl> | 2011-06-07 15:19:44 +0200 |
|---|---|---|
| committer | Łukasz Langa <lukasz@langa.pl> | 2011-06-07 15:19:44 +0200 |
| commit | 41c1910bb3229874a02c19ecd9189715b3ce501b (patch) | |
| tree | 48670346dd1cb33e46c68d594cfe0287dd541747 /Lib/idlelib | |
| parent | 62ec61fb6ad5f1745597017297a455d63a2f97e4 (diff) | |
| download | cpython-git-41c1910bb3229874a02c19ecd9189715b3ce501b.tar.gz | |
#12274: use proper escaping for % in IDLE config.
Diffstat (limited to 'Lib/idlelib')
| -rw-r--r-- | Lib/idlelib/config-main.def | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/idlelib/config-main.def b/Lib/idlelib/config-main.def index 5ddd098de1..9546e2bf12 100644 --- a/Lib/idlelib/config-main.def +++ b/Lib/idlelib/config-main.def @@ -46,8 +46,8 @@ [General] editor-on-startup= 0 autosave= 0 -print-command-posix=lpr %s -print-command-win=start /min notepad /p %s +print-command-posix=lpr %%s +print-command-win=start /min notepad /p %%s delete-exitfunc= 1 [EditorWindow] |
