##// END OF EJS Templates
eol: ignore IOError from deleted files in commitctx...
Nicholas Riley -
r14862:abf915f5 stable
parent child Browse files
Show More
@@ -318,7 +318,10 b' def reposetup(ui, repo):'
318 for f in sorted(ctx.added() + ctx.modified()):
318 for f in sorted(ctx.added() + ctx.modified()):
319 if not self._eolfile(f):
319 if not self._eolfile(f):
320 continue
320 continue
321 data = ctx[f].data()
321 try:
322 data = ctx[f].data()
323 except IOError:
324 continue
322 if util.binary(data):
325 if util.binary(data):
323 # We should not abort here, since the user should
326 # We should not abort here, since the user should
324 # be able to say "** = native" to automatically
327 # be able to say "** = native" to automatically
General Comments 0
You need to be logged in to leave comments. Login now