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 6e998a4575c6 dba3cadef789
files mercurial/localrepo.py
diffstat 1 files changed, 8 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/localrepo.py
+++ b/mercurial/localrepo.py
@@ -322,11 +322,14 @@ class localrepository(repo.repository):
         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 == '.':