~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

  • Committer: Aaron Bentley
  • Date: 2007-07-31 16:33:46 UTC
  • mto: (1551.19.24 Aaron's mergeable stuff)
  • mto: This revision was merged to the branch mainline in revision 2702.
  • Revision ID: abentley@panoramicfeedback.com-20070731163346-623xwcycwij91xen
Stop showing deltas in pull -v output

Show diffs side-by-side

added added

removed removed

Lines of Context:
639
639
 
640
640
        result.report(self.outf)
641
641
        if verbose:
642
 
            from bzrlib.log import show_changed_revisions
643
642
            new_rh = branch_to.revision_history()
644
 
            show_changed_revisions(branch_to, old_rh, new_rh,
645
 
                                   to_file=self.outf)
 
643
            log.show_changed_revisions(branch_to, old_rh, new_rh,
 
644
                                       to_file=self.outf)
646
645
 
647
646
 
648
647
class cmd_push(Command):