~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/branch.py

Clean up some mutter() calls.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1060
1060
        transaction = self.get_transaction()
1061
1061
        history = transaction.map.find_revision_history()
1062
1062
        if history is not None:
1063
 
            mutter("cache hit for revision-history in %s", self)
 
1063
            # mutter("cache hit for revision-history in %s", self)
1064
1064
            return list(history)
1065
1065
        history = [l.rstrip('\r\n') for l in
1066
1066
                self.control_files.get_utf8('revision-history').readlines()]