##// 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 def reposetup(ui, repo):
318 318 for f in sorted(ctx.added() + ctx.modified()):
319 319 if not self._eolfile(f):
320 320 continue
321 try:
321 322 data = ctx[f].data()
323 except IOError:
324 continue
322 325 if util.binary(data):
323 326 # We should not abort here, since the user should
324 327 # be able to say "** = native" to automatically
General Comments 0
You need to be logged in to leave comments. Login now