##// END OF EJS Templates
tags: silence hgtagsfnodes reading failures...
Matt Mackall -
r29039:e3055b46 stable
parent child Browse files
Show More
@@ -432,7 +432,10 b' class hgtagsfnodescache(object):'
432
432
433 self._raw = array('c')
433 self._raw = array('c')
434
434
435 data = repo.vfs.tryread(_fnodescachefile)
435 try:
436 data = repo.vfs.read(_fnodescachefile)
437 except (OSError, IOError):
438 data = ""
436 self._raw.fromstring(data)
439 self._raw.fromstring(data)
437
440
438 # The end state of self._raw is an array that is of the exact length
441 # The end state of self._raw is an array that is of the exact length
General Comments 0
You need to be logged in to leave comments. Login now