##// END OF EJS Templates
status: when extracting arguments from `opts`, use the same default values...
Kyle Lippincott -
r49292:eaad6829 default
parent child Browse files
Show More
@@ -6873,9 +6873,9 b' def status(ui, repo, *pats, **opts):'
6873
6873
6874 cmdutil.check_at_most_one_arg(opts, 'rev', 'change')
6874 cmdutil.check_at_most_one_arg(opts, 'rev', 'change')
6875 opts = pycompat.byteskwargs(opts)
6875 opts = pycompat.byteskwargs(opts)
6876 revs = opts.get(b'rev')
6876 revs = opts.get(b'rev', [])
6877 change = opts.get(b'change')
6877 change = opts.get(b'change', b'')
6878 terse = opts.get(b'terse')
6878 terse = opts.get(b'terse', _NOTTERSE)
6879 if terse is _NOTTERSE:
6879 if terse is _NOTTERSE:
6880 if revs:
6880 if revs:
6881 terse = b''
6881 terse = b''
General Comments 0
You need to be logged in to leave comments. Login now