Mercurial > public > mercurial-scm > hg-stable
diff hgext/extdiff.py @ 6760:4faaa0535ea7
status: clean up all users for unknown files
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Fri, 27 Jun 2008 13:43:29 -0500 |
parents | f6c00b17387c |
children | bd979854a388 |
line wrap: on
line diff
--- a/hgext/extdiff.py Thu Jun 26 18:49:45 2008 -0500 +++ b/hgext/extdiff.py Fri Jun 27 13:43:29 2008 -0500 @@ -122,8 +122,7 @@ ''' node1, node2 = cmdutil.revpair(repo, opts['rev']) matcher = cmdutil.match(repo, pats, opts) - modified, added, removed, deleted, unknown = repo.status( - node1, node2, matcher)[:5] + modified, added, removed = repo.status(node1, node2, matcher)[:3] if not (modified or added or removed): return 0