# HG changeset patch # User Christian Ebert # Date 1254397155 -7200 # Node ID d278bbd85f5dae26f16223185af0cabdc8951a36 # Parent a047bb9bab24fb43165e5ff168a6b18eeef320c8 Make kwfiles --all show unknown files too More consistent and similar to hg status. diff -r a047bb9bab24 -r d278bbd85f5d hgkw/keyword.py --- a/hgkw/keyword.py Thu Oct 01 13:39:15 2009 +0200 +++ b/hgkw/keyword.py Thu Oct 01 13:39:15 2009 +0200 @@ -248,7 +248,8 @@ '''Bails out if [keyword] configuration is not active. Returns status of working directory.''' if kwt: - unknown = opts.get('unknown') or opts.get('untracked') + unknown = (opts.get('unknown') or opts.get('all') + or opts.get('untracked')) return repo.status(match=cmdutil.match(repo, pats, opts), clean=True, unknown=unknown) if ui.configitems('keyword'):