diff hgext/hgk.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 fb42030d79d6
children e3bb005373b1 cc7114d96548
line wrap: on
line diff
--- a/hgext/hgk.py	Thu Jun 26 18:49:45 2008 -0500
+++ b/hgext/hgk.py	Fri Jun 27 13:43:29 2008 -0500
@@ -55,9 +55,7 @@
         mmap = repo[node1].manifest()
         mmap2 = repo[node2].manifest()
         m = cmdutil.match(repo, files)
-        status = repo.status(node1, node2, match=m)[:5]
-        modified, added, removed, deleted, unknown = status
-
+        modified, added, removed  = repo.status(node1, node2, m)[:3]
         empty = short(nullid)
 
         for f in modified: