##// END OF EJS Templates
branchmap: remove superfluous pass statements
Augie Fackler -
r34369:d0db41af default
parent child Browse files
Show More
@@ -251,9 +251,8 b' class branchcache(dict):'
251 251 'wrote %s branch cache with %d labels and %d nodes\n',
252 252 repo.filtername, len(self), nodecount)
253 253 except (IOError, OSError, error.Abort) as inst:
254 # Abort may be raised by read only opener, so log and continue
254 255 repo.ui.debug("couldn't write branch cache: %s\n" % inst)
255 # Abort may be raise by read only opener
256 pass
257 256
258 257 def update(self, repo, revgen):
259 258 """Given a branchhead cache, self, that may have extra nodes or be
General Comments 0
You need to be logged in to leave comments. Login now