diff options
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/site.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Lib/site.py b/Lib/site.py index b637635..0859f28 100644 --- a/Lib/site.py +++ b/Lib/site.py @@ -336,9 +336,7 @@ def setquit(): The repr of each object contains a hint at how it works. """ - if os.sep == ':': - eof = 'Cmd-Q' - elif os.sep == '\\': + if os.sep == '\\': eof = 'Ctrl-Z plus Return' else: eof = 'Ctrl-D (i.e. EOF)' |