# HG changeset patch # User Christian Ebert # Date 2008-01-09 04:24:33 # Node ID 2b67acc404f6b16c10e44966118bd8167b07c37d # Parent b8e8bd3c82f6c862ee8a0b17738812edf9bd3c40 keyword: clean up quiet setting in kwdemo and adding of untracked kwfiles diff --git a/hgext/keyword.py b/hgext/keyword.py --- a/hgext/keyword.py +++ b/hgext/keyword.py @@ -328,8 +328,7 @@ def demo(ui, repo, *args, **opts): ui.note('\nhg -R "%s" branch "%s"\n' % (tmpdir, branchname)) # silence branch command if not verbose quiet = ui.quiet - verbose = ui.verbose - ui.quiet = not verbose + ui.quiet = not ui.verbose commands.branch(ui, repo, branchname) ui.quiet = quiet for name, cmd in ui.configitems('hooks'): @@ -363,10 +362,9 @@ def files(ui, repo, *pats, **opts): ''' status = _status(ui, repo, *pats, **opts) modified, added, removed, deleted, unknown, ignored, clean = status + files = modified + added + clean if opts.get('untracked'): - files = modified + added + unknown + clean - else: - files = modified + added + clean + files += unknown files.sort() kwfiles = [f for f in files if _iskwfile(f, repo._link)] cwd = pats and repo.getcwd() or ''