##// END OF EJS Templates
branchmap: ignore Abort error while writing cache...
Pierre-Yves David -
r18214:cd4c7520 default
parent child Browse files
Show More
@@ -139,7 +139,8 b' class branchcache(dict):'
139 for node in nodes:
139 for node in nodes:
140 f.write("%s %s\n" % (hex(node), encoding.fromlocal(label)))
140 f.write("%s %s\n" % (hex(node), encoding.fromlocal(label)))
141 f.close()
141 f.close()
142 except (IOError, OSError):
142 except (IOError, OSError, util.Abort):
143 # Abort may be raise by read only opener
143 pass
144 pass
144
145
145 def update(self, repo, ctxgen):
146 def update(self, repo, ctxgen):
General Comments 0
You need to be logged in to leave comments. Login now