Show More
@@ -432,7 +432,10 b' class hgtagsfnodescache(object):' | |||
|
432 | 432 | |
|
433 | 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 | 439 | self._raw.fromstring(data) |
|
437 | 440 | |
|
438 | 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