changeset 46077 | 7a2b67e6b680 |
parent 46041 | 9c0db3671008 |
child 46087 | 64292addbe67 |
--- a/mercurial/commands.py Sun Dec 06 14:45:19 2020 +0100 +++ b/mercurial/commands.py Tue Dec 08 13:33:40 2020 -0800 @@ -6766,8 +6766,10 @@ morestatus = None if ( - ui.verbose or ui.configbool(b'commands', b'status.verbose') - ) and not ui.plain(): + (ui.verbose or ui.configbool(b'commands', b'status.verbose')) + and not ui.plain() + and not opts.get(b'print0') + ): morestatus = cmdutil.readmorestatus(repo) ui.pager(b'status')