Fix issue1738 for strip too.
authorBrendan Cully <brendan@kublai.com>
Tue, 14 Jul 2009 17:58:36 -0700
changeset 9125 8b58f53b9c35
parent 9123 360f61c2919f
child 9126 64994005bcb7
Fix issue1738 for strip too. I see no reason to open every touched file at once.
mercurial/repair.py
--- a/mercurial/repair.py	Tue Jul 14 16:50:37 2009 -0700
+++ b/mercurial/repair.py	Tue Jul 14 17:58:36 2009 -0700
@@ -112,7 +112,6 @@
         chgrpfile = _bundle(repo, savebases, saveheads, node, 'temp',
                             extranodes)
 
-    fs = [repo.file(name) for name in files]
     mfst = repo.manifest
 
     tr = repo.transaction()
@@ -121,8 +120,8 @@
     tr.startgroup()
     cl.strip(striprev, tr)
     mfst.strip(striprev, tr)
-    for f in fs:
-        f.strip(striprev, tr)
+    for fn in files:
+        repo.file(fn).strip(striprev, tr)
     tr.endgroup()
 
     try: