Show More
@@ -29,7 +29,7 b' import sys, os, signal' | |||
|
29 | 29 | |
|
30 | 30 | def uisetup(ui): |
|
31 | 31 | p = ui.config("pager", "pager", os.environ.get("PAGER")) |
|
32 |
if p and sys.stdout.isatty() and not |
|
|
32 | if p and sys.stdout.isatty() and '--debugger' not in sys.argv: | |
|
33 | 33 | if ui.configbool('pager', 'quiet'): |
|
34 | 34 | signal.signal(signal.SIGPIPE, signal.SIG_DFL) |
|
35 | 35 | sys.stderr = sys.stdout = os.popen(p, "wb") |
General Comments 0
You need to be logged in to leave comments.
Login now