Mercurial > hg
changeset 3452:fcf14d87e0a4
If we can't write the branch cache, fail quietly.
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Wed, 18 Oct 2006 10:46:51 -0500 |
parents | 196baf20232b |
children | dba3cadef789 6e998a4575c6 |
files | mercurial/localrepo.py |
diffstat | 1 files changed, 8 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/localrepo.py Wed Oct 18 10:35:14 2006 +0200 +++ b/mercurial/localrepo.py Wed Oct 18 10:46:51 2006 -0500 @@ -322,11 +322,14 @@ return self.branchcache def _writebranchcache(self): - f = self.opener("branches.cache", "w") - t = self.changelog.tip() - f.write("%s %s\n" % (hex(t), self.changelog.count() - 1)) - for label, node in self.branchcache.iteritems(): - f.write("%s %s\n" % (hex(node), label)) + try: + f = self.opener("branches.cache", "w") + t = self.changelog.tip() + f.write("%s %s\n" % (hex(t), self.changelog.count() - 1)) + for label, node in self.branchcache.iteritems(): + f.write("%s %s\n" % (hex(node), label)) + except IOError: + pass def lookup(self, key): if key == '.':