# HG changeset patch # User Martin von Zweigbergk # Date 2018-06-25 18:04:17 # Node ID 854c2ccc800eba3fd03e6291777ab155cbf1a577 # Parent 09b09fe7ee908ba5bb2b51d68e10001f3ab6ea94 terse: pass "clean" and "unknown" booleans by name for clarity Differential Revision: https://phab.mercurial-scm.org/D3838 diff --git a/mercurial/commands.py b/mercurial/commands.py --- a/mercurial/commands.py +++ b/mercurial/commands.py @@ -5067,7 +5067,8 @@ def status(ui, repo, *pats, **opts): # we need to compute clean and unknown to terse stat = repo.status(ctx1.node(), ctx2.node(), m, 'ignored' in show or 'i' in terse, - True, True, opts.get('subrepos')) + clean=True, unknown=True, + listsubrepos=opts.get('subrepos')) stat = cmdutil.tersedir(stat, terse) else: