hgext/record.py
changeset 6760 4faaa0535ea7
parent 6603 41eb20cc1c02
child 6951 c8c9ce0ed3ee
--- a/hgext/record.py	Thu Jun 26 18:49:45 2008 -0500
+++ b/hgext/record.py	Fri Jun 27 13:43:29 2008 -0500
@@ -405,8 +405,8 @@
         if match.files():
             changes = None
         else:
-            changes = repo.status(match=match)[:5]
-            modified, added, removed = changes[:3]
+            changes = repo.status(match=match)[:3]
+            modified, added, removed = changes
             match = cmdutil.matchfiles(repo, modified + added + removed)
         diffopts = mdiff.diffopts(git=True, nodates=True)
         fp = cStringIO.StringIO()
@@ -431,7 +431,7 @@
 
         if changes is None:
             match = cmdutil.matchfiles(repo, newfiles)
-            changes = repo.status(match=match)[:5]
+            changes = repo.status(match=match)
         modified = dict.fromkeys(changes[0])
 
         # 2. backup changed files, so we can restore them in the end