~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/check.py

Fixing mutter() calls to not have to do string processing.

Show diffs side-by-side

added added

removed removed

Lines of Context:
110
110
        last_rev_id - the previous one on the mainline, if any.
111
111
        """
112
112
 
113
 
        # mutter('    revision {%s}' % rev_id)
 
113
        # mutter('    revision {%s}', rev_id)
114
114
        branch = self.branch
115
115
        try:
116
116
            rev_history_position = self.history.index(rev_id)
164
164
                    ' value in revision {%s}' % rev_id)
165
165
        else:
166
166
            missing_inventory_sha_cnt += 1
167
 
            mutter("no inventory_sha1 on revision {%s}" % rev_id)
 
167
            mutter("no inventory_sha1 on revision {%s}", rev_id)
168
168
        self._check_revision_tree(rev_id)
169
169
        self.checked_rev_cnt += 1
170
170