localrepo: interpret ctx.filectx() exception as a missing file
authorPatrick Mezard <pmezard@gmail.com>
Wed, 18 Jun 2008 23:23:03 +0200
changeset 6712 93f127b59793
parent 6711 86e1f603a369
child 6714 5f339b6a7eff
localrepo: interpret ctx.filectx() exception as a missing file
mercurial/localrepo.py
--- a/mercurial/localrepo.py	Wed Jun 18 23:00:20 2008 +0200
+++ b/mercurial/localrepo.py	Wed Jun 18 23:23:03 2008 +0200
@@ -839,8 +839,8 @@
             commit.sort()
             for f in commit:
                 self.ui.note(f + "\n")
-                fctx = wctx.filectx(f)
                 try:
+                    fctx = wctx.filectx(f)
                     new[f] = self.filecommit(fctx, m1, m2, linkrev, trp, changed)
                     new_exec = fctx.isexec()
                     new_link = fctx.islink()