/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 bzrlib/builtins.py

  • Committer: Aaron Bentley
  • Date: 2008-12-12 02:43:42 UTC
  • mto: This revision was merged to the branch mainline in revision 3926.
  • Revision ID: aaron@aaronbentley.com-20081212024342-z9wf9wqms5hndjr0
Cleanup and use of show_branch_change

Show diffs side-by-side

added added

removed removed

Lines of Context:
797
797
                    branch_to.repository.iter_reverse_revision_history(
798
798
                    result.old_revid))
799
799
                old_rh.reverse()
800
 
                new_rh = branch_to.revision_history()
801
800
                log_format = branch_to.get_config().log_format()
802
 
                log.show_changed_revisions(branch_to, old_rh, new_rh,
803
 
                                           to_file=self.outf,
804
 
                                           log_format=log_format)
 
801
                log.show_branch_change(branch_to, self.outf, result.old_revno,
 
802
                                       result.old_revid)
805
803
        finally:
806
804
            branch_to.unlock()
807
805