~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/branch.py

  • Committer: Jonathan Riddell
  • Date: 2011-09-19 15:59:40 UTC
  • mto: This revision was merged to the branch mainline in revision 6150.
  • Revision ID: jriddell@canonical.com-20110919155940-4q4itcff3jhmhg6u
use .format() instead of % for string formatting where there are multiple formats in one string to allow for translations

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