Submitter | phabricator |
---|---|
Date | Oct. 10, 2017, 7:05 p.m. |
Message ID | <d9724cd3e55b6a16eebb49b24e525e1d@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/24715/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/mercurial/dispatch.py b/mercurial/dispatch.py --- a/mercurial/dispatch.py +++ b/mercurial/dispatch.py @@ -864,7 +864,8 @@ # ui.pager() expects 'internal-always-' prefix in this case ui.pager('internal-always-' + cmd) elif options['pager'] != 'auto': - ui.disablepager() + for ui_ in uis: + ui_.disablepager() if options['version']: return commands.version_(ui)