##// END OF EJS Templates
terse: pass "clean" and "unknown" booleans by name for clarity...
Martin von Zweigbergk -
r38487:854c2ccc default
parent child Browse files
Show More
@@ -5067,7 +5067,8 b' def status(ui, repo, *pats, **opts):'
5067 5067 # we need to compute clean and unknown to terse
5068 5068 stat = repo.status(ctx1.node(), ctx2.node(), m,
5069 5069 'ignored' in show or 'i' in terse,
5070 True, True, opts.get('subrepos'))
5070 clean=True, unknown=True,
5071 listsubrepos=opts.get('subrepos'))
5071 5072
5072 5073 stat = cmdutil.tersedir(stat, terse)
5073 5074 else:
General Comments 0
You need to be logged in to leave comments. Login now