/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to breezy/branch.py

  • Committer: Jelmer Vernooij
  • Date: 2019-06-22 18:46:21 UTC
  • mto: This revision was merged to the branch mainline in revision 7358.
  • Revision ID: jelmer@jelmer.uk-20190622184621-k2jrjew87roio42m
Fix test.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2024
2024
        if not is_quiet():
2025
2025
            if self.old_revid != self.new_revid:
2026
2026
                if self.new_revno is not None:
2027
 
                    note(gettext('Pushed up to revision %d.') % self.new_revno)
 
2027
                    note(gettext('Pushed up to revision %d.'),
 
2028
                         self.new_revno)
2028
2029
                else:
2029
 
                    note(gettext('Pushed up to revision id %s.') % self.new_revid)
 
2030
                    note(gettext('Pushed up to revision id %s.'),
 
2031
                         self.new_revid.decode('utf-8'))
2030
2032
            if tag_updates:
2031
2033
                note(ngettext('%d tag updated.', '%d tags updated.',
2032
2034
                              len(tag_updates)) % len(tag_updates))