~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/store/weave.py

  • Committer: Robert Collins
  • Date: 2005-10-04 04:38:48 UTC
  • mfrom: (1400.1.1)
  • Revision ID: robertc@robertcollins.net-20051004043848-d65bb5f9d435fbb3
unbreak http branch operations

Show diffs side-by-side

added added

removed removed

Lines of Context:
69
69
    def get_weave(self, file_id):
70
70
        if self.enable_cache:
71
71
            if file_id in self._cache:
72
 
                mutter("cache hit in %s for %s", self, file_id)
73
72
                return self._cache[file_id]
74
73
        w = read_weave(self._get(file_id))
75
74
        if self.enable_cache: