##// END OF EJS Templates
localrepo: interpret ctx.filectx() exception as a missing file
Patrick Mezard -
r6712:93f127b5 default
parent child Browse files
Show More
@@ -839,8 +839,8 b' class localrepository(repo.repository):'
839 commit.sort()
839 commit.sort()
840 for f in commit:
840 for f in commit:
841 self.ui.note(f + "\n")
841 self.ui.note(f + "\n")
842 fctx = wctx.filectx(f)
843 try:
842 try:
843 fctx = wctx.filectx(f)
844 new[f] = self.filecommit(fctx, m1, m2, linkrev, trp, changed)
844 new[f] = self.filecommit(fctx, m1, m2, linkrev, trp, changed)
845 new_exec = fctx.isexec()
845 new_exec = fctx.isexec()
846 new_link = fctx.islink()
846 new_link = fctx.islink()
General Comments 0
You need to be logged in to leave comments. Login now