~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/branch.py

(jr) use .format() instead of % for string formatting where there are
 multiple formats in one string to allow for translations (Jonathan Riddell)

Show diffs side-by-side

added added

removed removed

Lines of Context:
3162
3162
        :param verbose: Requests more detailed display of what was checked,
3163
3163
            if any.
3164
3164
        """
3165
 
        note(gettext('checked branch %s format %s'), self.branch.user_url,
3166
 
            self.branch._format)
 
3165
        note(gettext('checked branch {0} format {1}').format(
 
3166
                                self.branch.user_url, self.branch._format))
3167
3167
        for error in self.errors:
3168
3168
            note(gettext('found error:%s'), error)
3169
3169