mercurial/commands.py
changeset 6760 4faaa0535ea7
parent 6750 fb42030d79d6
child 6761 cb981fc955fb
--- a/mercurial/commands.py	Thu Jun 26 18:49:45 2008 -0500
+++ b/mercurial/commands.py	Fri Jun 27 13:43:29 2008 -0500
@@ -2197,7 +2197,7 @@
         raise util.Abort(_('no files specified'))
 
     m = cmdutil.match(repo, pats, opts)
-    mardu = map(dict.fromkeys, repo.status(match=m))[:5]
+    mardu = map(dict.fromkeys, repo.status(match=m, unknown=True))[:5]
     modified, added, removed, deleted, unknown = mardu
 
     remove, forget = [], []