Commit 0a66fcb1 authored by Fred Drake's avatar Fred Drake

If $TERM is "dumb" or "emacs", just dump the text instead of trying to run

"less".
Patch contributed by Alex Convertry.
This closes SF patch #443551.
parent 6fd3b228
......@@ -954,6 +954,8 @@ def getpager():
return plainpager
if not sys.stdin.isatty() or not sys.stdout.isatty():
return plainpager
if os.environ.get('TERM') in ['dumb', 'emacs']:
return lambda text: sys.stdout.write(text)
if os.environ.has_key('PAGER'):
if sys.platform == 'win32': # pipes completely broken in Windows
return lambda text: tempfilepager(plain(text), os.environ['PAGER'])
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment