~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/branch.py

  • Committer: Jelmer Vernooij
  • Date: 2009-02-10 00:25:52 UTC
  • mto: (3978.3.7 branch-bzrdir-inter)
  • mto: This revision was merged to the branch mainline in revision 4050.
  • Revision ID: jelmer@samba.org-20090210002552-zxrbkhq0bsukybcw
Write status messages during push to stderr rather than stdout.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2589
2589
    def report(self, to_file):
2590
2590
        """Write a human-readable description of the result."""
2591
2591
        if self.old_revid == self.new_revid:
2592
 
            to_file.write('No new revisions to push.\n')
 
2592
            note('No new revisions to push.')
2593
2593
        else:
2594
 
            to_file.write('Pushed up to revision %d.\n' % self.new_revno)
 
2594
            note('Pushed up to revision %d.' % self.new_revno)
2595
2595
        self._show_tag_conficts(to_file)
2596
2596
 
2597
2597